[flake8]
max-line-length = 88
extend-ignore = E203, W503, LOG011, LOG005
exclude =
    .git,
    __pycache__,
    example_project,
    .venv,
    .tox,
    build,
    dist,
    *.egg-info
per-file-ignores =
    # Imported but unused in __init__ files
    __init__.py:F401
    # Docstring examples can be long
    */views.py:E501
