summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-09-18 09:04:41 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-09-19 16:14:13 +0200
commit056d8e5fab7a167f73115d524ab92170b3ed5f9f (patch)
tree662c8a9d8da2071ee8a7b96a8603cc2fa9f1078d /setup.cfg
parent8d6d31bb8f9b44c6147522c49fa099c110b067f0 (diff)
downloadastroid-git-056d8e5fab7a167f73115d524ab92170b3ed5f9f.tar.gz
[flake8] Set the max complexity to the default instead of 83
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg5
1 files changed, 1 insertions, 4 deletions
diff --git a/setup.cfg b/setup.cfg
index 74d9078e..c6be9f8f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -14,10 +14,7 @@ extend-ignore =
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
-max-complexity = 83
-max-line-length = 120
-# per-file-ignores =
-# astroid/brain/brain_numpy_core_multiarray.py: E501, B950
+max-line-length = 110
select = B,C,E,F,W,T4,B9
# Required for flake8-typing-imports (v1.12.0)
# The plugin doesn't yet read the value from pyproject.toml