1
0
Fork 0
mirror of synced 2024-05-03 20:23:01 +12:00
Rare/misc/pylint.sh
loathingKernel 0f80f02dc2 Misc: Use python from virtualenv for pylint.sh script
Signed-off-by: loathingKernel <142770+loathingKernel@users.noreply.github.com>
2023-02-04 17:38:06 +02:00

9 lines
223 B
Bash
Executable file

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