From beeea4b292d2e098a42211b84a112ae58d7b31af Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Mon, 8 Dec 2014 15:27:13 -0800 Subject: [PATCH] Exclude miniedit from pep8 checking for now (Also untabbed comment lines, flagged by emacs et al.) --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 01c7448..9edd05d 100644 --- a/Makefile +++ b/Makefile @@ -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" @@ -50,7 +51,7 @@ install: $(MNEXEC) $(MANPAGES) python setup.py install develop: $(MNEXEC) $(MANPAGES) - # Perhaps we should link these as well +# Perhaps we should link these as well install $(MNEXEC) $(BINDIR) install $(MANPAGES) $(MANDIR) python setup.py develop