Python/.flake8
Christian Clauss 08c2245705
Upgrade to flake8 v6 (#8007)
* Upgrade to flake8 v6

* updating DIRECTORY.md

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2022-11-29 16:56:41 +01:00

11 lines
245 B
INI

[flake8]
max-line-length = 88
# max-complexity should be 10
max-complexity = 19
extend-ignore =
# Formatting style for `black`
# E203 is whitespace before ':'
E203,
# W503 is line break occurred before a binary operator
W503