pylint.sh 219 Bytes
Newer Older
sumpfralle's avatar
sumpfralle committed
1 2 3 4 5 6 7 8 9 10
#!/bin/sh

BASE_PATH="$(dirname "$0")"

set -eu

IGNORE_LIST="C0111,C0103,W0613,R0914,R0911,R0912,W0511,W0603,,R0902,W0612,R0903,R0201,R0915,R0913,W0602"

PYTHONPATH="$BASE_PATH/src" pylint -i y -d "$IGNORE_LIST" "$1"