From 728975a22395dbfdfef86c032ead4cd5d048f068 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Fri, 20 Feb 2015 12:36:30 -0800 Subject: [PATCH] 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 869427616..4f12db3d3 100644 --- a/tox.ini +++ b/tox.ini @@ -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