summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorBrian Haley <bhaley@redhat.com>2019-07-18 10:30:42 -0400
committerBrian Haley <bhaley@redhat.com>2019-07-19 23:39:41 -0400
commitb79842f289f0c9b9fdce9d6cc689538ec61216e7 (patch)
tree8d1e00609c2593da7f470d10823737f614ec278e /tox.ini
parentb3d9d9742a2bc193db36a33aa06507f67f279e3a (diff)
downloadneutron-b79842f289f0c9b9fdce9d6cc689538ec61216e7.tar.gz
Start enforcing E125 flake8 directive
Removed E125 (continuation line does not distinguish itself from next logical line) from the ignore list and fixed all the indentation issues. Didn't think it was going to be close to 100 files when I started. Change-Id: I0a6f5efec4b7d8d3632dd9dbb43e0ab58af9dff3
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 16a2933b11..f7c0a06fb1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -156,7 +156,6 @@ deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -W -b linkcheck doc/source doc/build/linkcheck
[flake8]
-# E125 continuation line does not distinguish itself from next logical line
# E126 continuation line over-indented for hanging indent
# E128 continuation line under-indented for visual indent
# H405 multi line docstring summary not separated with an empty line
@@ -164,7 +163,7 @@ commands = sphinx-build -W -b linkcheck doc/source doc/build/linkcheck
# TODO(amotoki) check the following new rules should be fixed or ignored
# E731 do not assign a lambda expression, use a def
# W504 line break after binary operator
-ignore = E125,E126,E128,E731,H405,N530,W504
+ignore = E126,E128,E731,H405,N530,W504
# H106: Don't put vim configuration in source files
# H203: Use assertIs(Not)None to check for None
# H204: Use assert(Not)Equal to check for equality