1
0
Fork 0
mirror of synced 2024-09-29 08:51:43 +13:00
Rare/misc/pylint.sh
2021-12-05 19:47:06 +01:00

8 lines
185 B
Bash
Executable file

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