All checks were successful
/ job (push) Successful in 1m12s
new development branch from root commit
6 lines
94 B
Bash
6 lines
94 B
Bash
rwx_pylint() {
|
|
local path="${1}"
|
|
pylint \
|
|
--enable-all-extensions \
|
|
"${path}/**/*.py"
|
|
}
|