736f95617e
Signed-off-by: Dan Yeaw <dan@yeaw.me>
10 lines
338 B
INI
10 lines
338 B
INI
[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
|
|
show-source = True |