Enable Non-Occurring Flake8 Errors

Flake8 currently ignores the following errors:
H233: Python 3.x incompatible use of print operator
H404: multi line docstring should start without a leading new line
H405: multi line docstring summary not separated with an empty line
Which do not appear currently in the repo. Enable them so that they
do not get introduced

Change-Id: I169969f606916b36f323f9fad0601f41fddaf8e4
Signed-off-by: Eric Barrett <eric.barrett@windriver.com>
This commit is contained in:
Eric Barrett 2019-06-10 13:06:24 -04:00
parent 67025c3bb2
commit fc77b27c3f
1 changed files with 1 additions and 4 deletions

View File

@ -51,10 +51,7 @@ commands =
show-source = True
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,release-tag-*
# H102 Apache License format
# H233 Python 3.x incompatible use of print operator
# H404 multi line docstring should start without a leading new line
# H405 multi line docstring summary not separated with an empty line
ignore = H102,H233,H404,H405
ignore = H102
[testenv:venv]
commands = {posargs}