6 lines
94 B
1
rwx_pylint() {
2
local path="${1}"
3
pylint \
4
--enable-all-extensions \
5
"${path}/**/*.py"
6
}
7