From bb6a0b29c9286689942393ab56543497487de929 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Wed, 18 Feb 2015 14:12:20 -0800 Subject: 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: Iddff6a826bc7c9ff07643b7408c51f1bd129530c --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 23ae52108..f28732b02 100644 --- a/tox.ini +++ b/tox.ini @@ -52,7 +52,7 @@ commands = {posargs} [flake8] # E711: ignored because it is normal to use "column == None" in sqlalchemy -ignore = E12,E711 +ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E711 exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova* max-complexity=17 -- cgit v1.2.1