[flake8]
max-line-length = 88
extend-ignore = E203, W503, E402
exclude =
    .git,
    __pycache__,
    .pytest_cache,
    htmlcov,
    .venv,
    venv,
    env,
    build,
    dist,
    *.egg-info
per-file-ignores =
    # Allow unused imports in __init__.py files
    __init__.py:F401
    # Allow longer lines in test files for readability
    test_*.py:E501
    # Allow assert statements in test files
    test_*.py:S101
