changeset 538:e85d1eddf539

more flake8 customizations
author Franz Glasner <fzglas.hg@dom66.de>
date Tue, 28 Dec 2021 16:30:48 +0100
parents 32f97080b417
children 9546d38cd3f8
files setup.cfg
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/setup.cfg	Tue Dec 21 09:44:36 2021 +0100
+++ b/setup.cfg	Tue Dec 28 16:30:48 2021 +0100
@@ -13,6 +13,11 @@
 formats = gztar
 
 [flake8]
+ignore =
+    # "multiple statements on one line (colon)"
+    E701,
+    # "line break before binary operator"
+    W503,
 per-file-ignores =
     # Ignore "too many blank lines"
     configmix/compat.py:E303