[flake8]
max-line-length = 100
extend-ignore = E203, W503, E501, F541, E402, C901, F841, F401
exclude =
    .git,
    __pycache__,
    .venv,
    venv,
    env,
    build,
    dist,
    .pytest_cache,
    htmlcov,
    .coverage,
    *.egg-info,
    node_modules,
    archived,
    skills-library,
    reports,
    test_cases

# Relaxed for AI-generated code and rapid prototyping
max-complexity = 15
per-file-ignores =
    __init__.py:F401
    tests/*:F401,F811
