[flake8]
max-line-length = 120
extend-ignore = E203, E266, E501, W503
exclude = 
    .git,
    __pycache__,
    build,
    dist,
    .venv,
    venv,
    env,
    .mypy_cache,
    .pytest_cache,
    .idea,
    .vscode

per-file-ignores =
    __init__.py: F401
