We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0513cba commit cc1ef5cCopy full SHA for cc1ef5c
scripts/check-syntax.sh
@@ -117,7 +117,12 @@ done
117
# check other python scripts
118
echo "-----------------------------------------"
119
echo "checking other python scripts with pylint"
120
-find . -name "*.py" -not -path "./dotdrop/*" -not -regex "\./\.?v?env/.*" | while read -r script; do
+find . -name "*.py" \
121
+ -not -path "./dotdrop/*" \
122
+ -not -path "./build/*" \
123
+ -not -path "./dist/*" \
124
+ -not -regex "\./\.?v?env/.*" \
125
+ | while read -r script; do
126
echo "checking ${script}"
127
pylint -sn \
128
--disable=W0012 \
0 commit comments