diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-10 07:35:26 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-10 07:35:26 -0400 |
commit | 1bdc86a1bd524672cf5a55ec8c966b88ccc1b68d (patch) | |
tree | e6ea93e025c5814ed8dc219970844e3b6d3d6250 | |
parent | d023208415eb330daf2a09ade85a0240c2a9453f (diff) | |
download | python-coveragepy-git-1bdc86a1bd524672cf5a55ec8c966b88ccc1b68d.tar.gz |
Fix the pep8 settings.
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -38,7 +38,7 @@ spell: -pylint --disable=all --enable=spelling $(LINTABLE) pep8: - pep8 --filename=*.py --ignore=E401,E301 --repeat $(LINTABLE) + pep8 --filename=*.py --repeat $(LINTABLE) test: tox -e py27 $(ARGS) @@ -49,6 +49,8 @@ basepython = pypy3-2.4 # Yes, pep8 will read its settings from tox.ini! [pep8] # E265: block comment should start with '# ' +# E301 expected 1 blank line, found 0 +# E401 multiple imports on one line # The rest are the default ignored warnings. -ignore = E265,E123,E133,E226,E241,E242 +ignore = E265,E123,E133,E226,E241,E242,E301,E401 max-line-length = 100 |