generic/.flake8

10 lines
338 B
Plaintext
Raw Normal View History

[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