gaphas/.flake8
Dan Yeaw 4aed4b0e5e
Remove unnecessary flake8 exclusions
Signed-off-by: Dan Yeaw <dan@yeaw.me>
2020-08-20 22:02:52 -04:00

10 lines
351 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, __init__.py
show-source = True