Merge "Delete H803 from ignore list"

This commit is contained in:
Jenkins 2017-02-22 15:28:14 +00:00 committed by Gerrit Code Review
commit 8b34c17233

View File

@ -36,7 +36,6 @@ commands = python setup.py build_sphinx
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[flake8]
# H803 skipped on purpose per list discussion.
# E123, E125 skipped as they are invalid PEP-8.
# Following checks are ignored on purpose.
#
@ -46,9 +45,6 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen
# E265 block comment should start with '# '
# reason: no improvement in readability
#
# H803 git commit title should not end with period
# reason: removed in hacking (https://review.openstack.org/#/c/101498/)
#
# H904 wrap long lines in parentheses instead of a backslash
# reason: removed in hacking (https://review.openstack.org/#/c/101701/)
#
@ -58,7 +54,7 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen
# ignored on purpose for the moment and should be re-enabled.
show-source = True
ignore = E123,E125,E126,E127,E128,E251,E265,H302,H405,H803,H904,H404
ignore = E123,E125,E126,E127,E128,E251,E265,H302,H405,H904,H404
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
max-complexity=30