7 lines
203 B
Bash
Executable File
7 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $SNEJ_ROOT
|
|
pylint3 --max-line-length=80 --extension-pkg-whitelist=pygame \
|
|
--variable-rgx="[a-z][a-z0-9_]{0,30}$" --indent-string=' ' \
|
|
--disable=fixme,missing-docstring **/*.py
|