aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-10-15 09:57:55 +0200
committerGuido Günther <agx@sigxcpu.org>2018-10-15 10:15:08 +0200
commit497addcb69ddb53199c75d29004239e1cbb8495a (patch)
treef8e29da678bbcee43394401eeb67b4e2771d9709
parentc1bd26b71a7adb897090305722a9ea5c21cf1c7a (diff)
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.
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
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