Skip to content

Commit

Permalink
Start a pyflakes section to cut down on extra messages that we don't …
Browse files Browse the repository at this point in the history
…agree are problems
  • Loading branch information
abadger committed Nov 11, 2015
1 parent e45ce87 commit ab44cf2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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/*

0 comments on commit ab44cf2

Please sign in to comment.