Remove H302,H402,H904

These rules were removed from hacking 0.10.x.

Change-Id: I0f6c47c1c87103e85195fac3ed910638d35aaf33
This commit is contained in:
Zhenguo Niu 2015-07-16 11:15:30 +08:00
parent b8e4c90be1
commit 94f5096750

View File

@ -69,12 +69,9 @@ commands = python setup.py build_sphinx
# TODO(dmllr): Analyze or fix the warnings blacklisted below
# E711 comparison to None should be 'if cond is not None:'
# E712 comparison to True should be 'if cond is True:' or 'if cond:'
# H302 import only modules
# H402 one line docstring needs punctuation.
# H404 multi line docstring should start with a summary
# H405 multi line docstring summary not separated with an empty line
# H904 Wrap long lines in parentheses instead of a backslash
ignore = E711,E712,H302,H402,H404,H405,H904
ignore = E711,E712,H404,H405
exclude = .venv,.git,.tox,dist,doc,etc,*glance/locale*,*openstack/common*,*lib/python*,*egg,build
[hacking]