7 lines
94 B
Bash
7 lines
94 B
Bash
|
rwx_pylint() {
|
||
|
local path="${1}"
|
||
|
pylint \
|
||
|
--enable-all-extensions \
|
||
|
"${path}/**/*.py"
|
||
|
}
|