[flake8]
max-line-length = 88
extend-ignore = E203,W503,E501,E402
exclude =
    .git,
    __pycache__,
    .venv,
    .eggs,
    *.egg,
    build,
    dist,
    .tox,
    .mypy_cache,
    .pytest_cache,
    docs/source/conf.py
per-file-ignores = __init__.py:F401,F403
max-complexity = 10
