summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg9
1 files changed, 7 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 43de692ae..cf7545717 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -9,9 +9,14 @@ license_files =
CONTRIBUTORS.txt
[flake8]
+# Incompatible with black see https://github.com/ambv/black/issues/315
+# E203: Whitespace before ':'
+# W503: Line break occurred before a binary operator
+# E501: Line too long
ignore =
- E203, W503, # Incompatible with black see https://github.com/ambv/black/issues/315
- E501, # Lot of lines too long right now
+ E203,
+ W503,
+ E501
max-line-length=88
max-complexity=39
# Required for flake8-typing-imports (v1.12.0)