diff options
-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 |