1
0
Fork 0
mirror of synced 2024-07-03 05:31:23 +12:00
Rare/scripts/pylint.sh
2021-10-24 19:07:51 +03: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