File size: 464 Bytes
6e040df |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[flake8]
max-line-length = 88
select =
E # pep8 errors
F # pyflakes errors
W # pep8 warnings
B # flake8-bugbear warnings
ignore =
E501 # "Line lengths are recommended to be no greater than 79 characters"
E203 # "Whitespace before ':'": conflicts with black
W503 # "line break before binary operator": conflicts with black
exclude =
.git
.vscode
.pytest_cache
.mypy_cache
.venv
.env
.direnv
per-file-ignores = |