Make flake8 ignore list more fine granular

Instead of ignoring all flake8 specific errors ("F"), list those
codes that currently fail so that they can be addressed one by one
and the currently passing ones will not get added by accident.

Change-Id: Ia40f0d832b70eeb788ae14a84dc0c40cc2e4724f
This commit is contained in:
Andreas Jaeger 2014-08-01 21:11:22 +02:00 committed by Andreas Jaeger
parent 28ecd93b54
commit 518a2491b8
1 changed files with 1 additions and 1 deletions

View File

@ -42,6 +42,6 @@ commands = bash tools/lintstack.sh
# TODO: These are not intentionally disabled, reenable when fixed:
# H405: multi line docstring summary not separated with an empty line
# H501: Do not use locals() for string formatting
ignore = E12,H302,H303,H402,H404,H405,H501,H904,F
ignore = E12,H302,H303,H402,H404,H405,H501,H904,F401,F402,F403,F811,F812,F841
builtins = _
exclude = .venv,.tox,dist,doc,openstack,*egg