[flake8]
max-line-length = 100
exclude = 
    .git,
    __pycache__,
    .venv,
    venv,
    node_modules,
    .pytest_cache
ignore = 
    E203,
    W503,
    E501
per-file-ignores =
    __init__.py:F401