summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-12-06 23:23:37 +0100
committerGitHub <noreply@github.com>2022-12-06 23:23:37 +0100
commit233b9d6fe8efb5bb1e270f275201654d1e7467c8 (patch)
treee5ce2ab26bc4463ce4f5aaa438fd958b8d80358f /setup.cfg
parent0ff97ddd3ff4fc1e044f76b72cea6c3e1b7e6127 (diff)
downloadpylint-git-233b9d6fe8efb5bb1e270f275201654d1e7467c8.tar.gz
Bump flake8 from 5.0.4 to 6.0.0 (#7859)
Bumps [flake8](https://github.com/pycqa/flake8) from 5.0.4 to 6.0.0. - [Release notes](https://github.com/pycqa/flake8/releases) - [Commits](https://github.com/pycqa/flake8/compare/5.0.4...6.0.0) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-major ... * Fix regression with inline comment * Update flake8 config * doc about required python interpreters for contributors Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
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)