[flake8]
exclude =
    venv
    .venv
    __pycache__
    notebooks
    scratch
    .git
# Recommend matching the black line length (default 88),
# rather than using the flake8 default of 79:
max-line-length = 120
extend-ignore =
    # E203 Workaround for: https://github.com/PyCQA/pycodestyle/issues/373
    E203,E501,W291,F401
