1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 20:19:46 +00:00

more python versions support

This commit is contained in:
deadc0de6
2025-12-30 17:17:19 +01:00
committed by deadc0de
parent 55c5869c30
commit 36e2e8a32d
6 changed files with 79 additions and 26 deletions

View File

@@ -117,7 +117,12 @@ done
# check other python scripts
echo "-----------------------------------------"
echo "checking other python scripts with pylint"
find . -name "*.py" -not -path "./dotdrop/*" -not -regex "\./\.?v?env/.*" | while read -r script; do
find . \
-path "./dotdrop" -prune -o \
-path "./.venv" -prune -o \
-path "./venv" -prune -o \
-path "./build" -prune -o \
-name "*.py" -print | while read -r script; do
echo "checking ${script}"
pylint -sn \
--disable=W0012 \