10 lines
351 B
Plaintext
10 lines
351 B
Plaintext
|
[flake8]
|
||
|
# E501 (Line too long) is handled by Black (reformatting)
|
||
|
# W503 (Line break occurred before a binary operator) conflicts with Black formatting
|
||
|
# E203 (whitespace before ':') is not PEP8 compliant
|
||
|
ignore = E501, W503, E203
|
||
|
max-line-length = 88
|
||
|
max-complexity = 18
|
||
|
select = B,C,E,F,W,T4,B9
|
||
|
exclude = .venv, dist, __init__.py
|
||
|
show-source = True
|