From 497addcb69ddb53199c75d29004239e1cbb8495a Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Mon, 15 Oct 2018 09:57:55 +0200 Subject: Ignore flake8's 'W504 line break after binary operator' With flake8's other warnings this doesn't make much sense since indentation accoding to https://hg.python.org/peps/rev/3857909d7956 does not work. It triggers - 'W503 line break before binary operator' - 'E129 visually indented line with same indent as next logical line' If one want to align the operators one hits - 'E127 continuation line over-indented for visual indent' So let's leave things as is for the moment. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index fd6cc5fe..af80cdb1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,5 +9,5 @@ verbosity=2 [flake8] # E501: ignore line length # E265: block comment should start with '# ' -ignore=E501,E265 +ignore=E501,E265,W504 builtins=unicode,execfile,raw_input -- cgit v1.2.3