From caffd60d4309254ea9cb63cd34e50674447a0344 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 14 Oct 2018 13:37:06 +0100 Subject: [PATCH] setup.cfg: Ignore flake8 W503/W504 operator before/after newline This is in the default ignore list. Unfortunately setting the list overrides the default ignores. Some discussion of this here: https://github.com/PyCQA/pycodestyle/issues/498 Signed-off-by: Ian Jackson --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index fd6cc5f..6e7974f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,5 +9,6 @@ verbosity=2 [flake8] # E501: ignore line length # E265: block comment should start with '# ' -ignore=E501,E265 +# W503 / W504: line break before / after binary operator +ignore=E501,E265,W503,W504 builtins=unicode,execfile,raw_input -- 2.30.2