Exclude miniedit from pep8 checking for now

(Also untabbed comment lines, flagged by emacs et al.)
This commit is contained in:
Bob Lantz
2014-12-08 15:27:13 -08:00
parent 7a3159c9af
commit beeea4b292
+2 -1
View File
@@ -24,7 +24,8 @@ codecheck: $(PYSRC)
util/versioncheck.py
pyflakes $(PYSRC)
pylint --rcfile=.pylint $(PYSRC)
pep8 --repeat --ignore=$(P8IGN) $(PYSRC)
# Exclude miniedit from pep8 checking for now
pep8 --repeat --ignore=$(P8IGN) `ls $(PYSRC) | grep -v miniedit.py`
errcheck: $(PYSRC)
-echo "Running check for errors only"