summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg10
1 files changed, 5 insertions, 5 deletions
diff --git a/setup.cfg b/setup.cfg
index c6be9f8f..19ab335a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -9,11 +9,11 @@ license_files =
CONTRIBUTORS.txt
[flake8]
-extend-ignore =
- F401, # Unused imports
- E203, # Incompatible with black see https://github.com/psf/black/issues/315
- W503, # Incompatible with black
- B901 # Combine yield and return statements in one function
+# F401; Unused imports
+# E203; Incompatible with black see https://github.com/psf/black/issues/315
+# W503; Incompatible with black
+# B901; Combine yield and return statements in one function
+extend-ignore = F401, E203, W503, B901
max-line-length = 110
select = B,C,E,F,W,T4,B9
# Required for flake8-typing-imports (v1.12.0)