mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
27d56ba393
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/PyCQA/isort: v5.11.3 → 5.11.4](https://github.com/PyCQA/isort/compare/v5.11.3...5.11.4) * Update .flake8 Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.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
|