[flake8]
max-line-length = 120
extend-ignore =
    # E203: whitespace before ':' (conflicts with black)
    E203,
    # W503: line break before binary operator (conflicts with black)
    W503,
    # E501: line too long (black handles this)
    E501,
per-file-ignores =
    # F401: imported but unused (re-export shims, __init__ files)
    mindgard_shell/__init__.py:F401
    tests/*:F811
