1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 18:34:48 +00:00

ignore build dir and others

This commit is contained in:
user
2025-05-19 21:56:33 +02:00
parent 0513cba551
commit cc1ef5c001

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 . -name "*.py" \
-not -path "./dotdrop/*" \
-not -path "./build/*" \
-not -path "./dist/*" \
-not -regex "\./\.?v?env/.*" \
| while read -r script; do
echo "checking ${script}"
pylint -sn \
--disable=W0012 \