[flake8]
max-line-length = 110
# Permanent ignores for Black compatibility - DO NOT REMOVE
ignore = E203, W503
# Per-file ignores for legitimate patterns
per-file-ignores =
    examples/*:E402
    tests/helpers/*:E402
    repo/*:E501
exclude =
    .git,
    __pycache__,
    .venv,
    venv,
    build,
    dist,
    htmlcov,
    .coverage,
    .pytest_cache,
    *.egg-info
