1
0
Fork 0
mirror of synced 2024-06-02 02:34:40 +12:00
Rare/misc/pylint.sh
2021-12-05 19:47:06 +01:00

9 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