[flake8]
max-line-length = 120
# Match the rest of the repo: pyflakes (F*) on; ignore cosmetic pycodestyle checks an
# autoformatter would own (this project doesn't run one).
extend-ignore = E501,E203,W503,E302,E303,E305,W391,E127,E128,E131
exclude = .venv,__pycache__,.pytest_cache,.git,dist,build
per-file-ignores =
    tests/*: E402, F811
