[flake8]
extend-ignore =
    # E501 line too long
    E501,
    # F541 f-string is missing placeholders
    F541,
    # whitespace before ':' (black)
    E203,
exclude =
    .git,
    __pycache__,
    build,
    dist,
    .venv,
    venv,
    .vscode
max-complexity = 10
import-order-style = google
