diff --git a/scripts/check-syntax.sh b/scripts/check-syntax.sh index 9b05cfa..fdee823 100755 --- a/scripts/check-syntax.sh +++ b/scripts/check-syntax.sh @@ -111,7 +111,7 @@ done # check other python scripts echo "-----------------------------------------" echo "checking other python scripts with pylint" -find . -name "*.py" -not -path "./dotdrop/*" | while read -r script; do +find . -name "*.py" -not -path "./dotdrop/*" -not -regex "\./\.?v?env/.*" | while read -r script; do echo "checking ${script}" pylint -sn \ --disable=R0914 \