[flake8]
max-line-length = 100
# Black compatibility: E203 (whitespace before ':') and W503 (line break before binary
# operator) conflict with Black's formatting.
extend-ignore = E203, W503
exclude =
    .git,
    __pycache__,
    .venv,
    build,
    dist,
    htmlcov,
    *.egg-info
