mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 15:01:08 +00:00
08c2245705
* Upgrade to flake8 v6 * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
11 lines
245 B
INI
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
|