1
0
Fork 0
mirror of synced 2024-06-26 18:20:50 +12:00
Rare/misc/pylint.sh

9 lines
185 B
Bash
Raw Normal View History

#!/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