From 98e0cb71bf88a5e514c2774a345af20dd1074abf Mon Sep 17 00:00:00 2001 From: James Graham Date: Fri, 22 Jul 2016 16:46:44 +0100 Subject: [PATCH] Ignore pylint warning 'E129 visually indented line with same indent as next logical line' This is triggered every time you have a construct like if (foo and bar): which is very common. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 6c2645c2d4b864..97d1df61311da6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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