summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2015-11-11 07:50:19 -0800
committerToshio Kuratomi <toshio@fedoraproject.org>2015-11-11 07:50:19 -0800
commitab44cf2a9a1da3a78b423168be34dac04d5942ab (patch)
tree4bebd9265ad4c420bfab2abd4d81370a5d03fc6f /tox.ini
parente45ce871a77462e85131d5e3a99fcd45d32a955b (diff)
downloadansible-ab44cf2a9a1da3a78b423168be34dac04d5942ab.tar.gz
Start a pyflakes section to cut down on extra messages that we don't agree are problems
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini19
1 files changed, 19 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 7c630f20b1..a061218f3c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,3 +11,22 @@ commands =
py34: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
py35: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
make tests
+
+
+[flake8]
+# These are things that the devs don't agree make the code more readable
+# E128 continuation line under-indented for visual indent
+# E201 whitespace after '['
+# E202 whitespace before ']'
+# E203 whitespace before ','
+# E221 multiple spaces before operator
+# E225 missing whitespace around operator
+# E226 missing whitespace around arithmetic operator
+# E231 missing whitespace after ','
+# E241 multiple spaces after ','
+# E251 unexpected spaces around keyword / parameter equals
+ignore = E128,E201,E202,E203,E221,E225,E226,E231,E241,E251
+# not all the devs believe in 80 column line length
+max-line-length = 160
+# Not going to worry about style in the test suite
+exclude = tests/*