rwx/sh/lint/pylint.sh

7 lines
94 B
Bash
Raw Permalink Normal View History

rwx_pylint() {
local path="${1}"
pylint \
--enable-all-extensions \
"${path}/**/*.py"
}