For flake8 check, make the 'E12' ignore be more granular

ignore = E12 means ignore E12* errors.

Make it more granular by converting to E121,E122,...,E129

This will make it easier in the future to remove a single ignore and
update the code to resolve the issues.

Change-Id: I88adc53ce78db22f8fe9bcaa0885afef592150e9
This commit is contained in:
John L. Villalovos
2015-02-20 12:36:30 -08:00
parent b5b05e35bf
commit 728975a223

View File

@@ -29,7 +29,7 @@ commands =
commands = {posargs}
[flake8]
ignore = E12
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129
builtins = _
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools