summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-02-09 11:38:32 +0100
committerGitHub <noreply@github.com>2023-02-09 11:38:32 +0100
commit5931025255fe64ff98d9896c7defcc90622fa5de (patch)
treee46a2287703fe52249829bf57dc64cb59c5b9c40 /setup.cfg
parent67bf5da18b08d828d62ca4b0c8b42fb7820f0437 (diff)
downloadastroid-git-5931025255fe64ff98d9896c7defcc90622fa5de.tar.gz
Bump flake8-bugbear from 22.10.27 to 23.1.20 (#2010)
* Bump flake8-bugbear from 22.10.27 to 23.1.20 Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 22.10.27 to 23.1.20. - [Release notes](https://github.com/PyCQA/flake8-bugbear/releases) - [Commits](https://github.com/PyCQA/flake8-bugbear/compare/22.10.27...23.1.20) --- updated-dependencies: - dependency-name: flake8-bugbear dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * also upgrade pre-commit * Ignore existing issues Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 19ab335a..a0fa37c1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -13,7 +13,10 @@ license_files =
# 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
+# 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)