Skip to content

Commit

Permalink
Exclude miniedit from pep8 checking for now
Browse files Browse the repository at this point in the history
(Also untabbed comment lines, flagged by emacs et al.)
  • Loading branch information
lantz committed Dec 8, 2014
1 parent 7a3159c commit beeea4b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit beeea4b

Please sign in to comment.