Przeglądaj źródła

don't run pycodestyle on node_modules directory

checktheroads 4 lat temu
rodzic
commit
10d1378277
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      scripts/git-hooks/pre-commit

+ 1 - 1
scripts/git-hooks/pre-commit

@@ -23,7 +23,7 @@ if [ -d ./venv/ ]; then
 fi
 fi
 
 
 echo "Validating PEP8 compliance..."
 echo "Validating PEP8 compliance..."
-pycodestyle --ignore=W504,E501 netbox/
+pycodestyle --ignore=W504,E501 --exclude=node_modules netbox/
 if [ $? != 0 ]; then
 if [ $? != 0 ]; then
 	EXIT=1
 	EXIT=1
 fi
 fi