mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
e40c7b4bf1
* refactor: move flake8 config * Update .pre-commit-config.yaml Co-authored-by: Christian Clauss <cclauss@me.com>
9 lines
250 B
INI
9 lines
250 B
INI
[flake8]
|
|
max-line-length = 88
|
|
max-complexity = 25
|
|
extend-ignore =
|
|
A003 # Class attribute is shadowing a python builtin
|
|
# Formatting style for `black`
|
|
E203 # Whitespace before ':'
|
|
W503 # Line break occurred before a binary operator
|