summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-03-14 19:43:31 +0100
committerGitHub <noreply@github.com>2023-03-14 19:43:31 +0100
commitce07459e1e6cd636dd3c4bb26b7cadeec8de6001 (patch)
treefe6d6bdec9a9b8fa3ced6f6f11a52b4bc6c5a3c1 /setup.cfg
parent886da706f0f88df667099dad915a581338779ef1 (diff)
downloadastroid-git-ce07459e1e6cd636dd3c4bb26b7cadeec8de6001.tar.gz
Upgrade pre-commit configuration and move to ruff (#2057)
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg15
1 files changed, 0 insertions, 15 deletions
diff --git a/setup.cfg b/setup.cfg
index a0fa37c1..3b35d7a5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -7,18 +7,3 @@
license_files =
LICENSE
CONTRIBUTORS.txt
-
-[flake8]
-# 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
-# B905; We still support python 3.9
-# B906; Flake8 plugin specific check that is always going to be a false positive in pylint
-# B907; Not worth a refactor
-extend-ignore = F401, E203, W503, B901, B905, B906, B907
-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
-min_python_version = 3.7.2