1
0
Fork 0
mirror of synced 2024-06-21 12:00:25 +12:00
Rare/misc/pylint.sh

9 lines
223 B
Bash
Raw Normal View History

#!/bin/sh
cwd="$(pwd)"
cd "$(dirname "$0")"/.. || exit
python -m pylint -E rare --jobs=1 --disable=E0611,E1123,E1120 --ignore=ui,singleton.py --extension-pkg-whitelist=PyQt5 --generated-members=PyQt5.*
cd "$cwd" || exit