Skip to content

Commit

Permalink
Ignore pylint warning 'E129 visually indented line with same indent a…
Browse files Browse the repository at this point in the history
…s next logical line'

This is triggered every time you have a construct like
if (foo and
    bar):

which is very common.
  • Loading branch information
jgraham committed Jul 22, 2016
1 parent 6c37e05 commit 98e0cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
ignore = E128,E221,E226,E231,E251,E265,E302,E303,E402,E901,F401,F821,F841
ignore = E128,E129,E221,E226,E231,E251,E265,E302,E303,E402,E901,F401,F821,F841
max-line-length = 141
exclude = html5lib,py,pytest,pywebsocket,six,webdriver,wptserve

0 comments on commit 98e0cb7

Please sign in to comment.