From db943945f3ac1b4e5a1201cad40e07d49a78bf7d Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 3 Sep 2014 09:10:00 -0400 Subject: [PATCH] Update pep8 ignore list This commit updates the ignore list for the new hacking version. Some additional rule skips are needed for various reasons. Change-Id: I0f037978b76dec05cfd5eab6038252f6bc6c6db3 --- tox.ini | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index fe7f347..88f7e78 100644 --- a/tox.ini +++ b/tox.ini @@ -31,6 +31,9 @@ commands = python setup.py build_sphinx [flake8] # E125 is deliberately excluded. See https://github.com/jcrocholl/pep8/issues/126 - -ignore = E125 +# H402 skipped because some docstrings aren't sentences +# E123 skipped because it is ignored by default in the default pep8 +# E129 skipped because it is too limiting when combined with other rules +# H305 skipped because it is inconsistent between python versions +ignore = E125,H402,E123,E129,H305 exclude = .venv,.git,.tox,dist,doc,*egg,build