[flake8]
# Recommend matching the black line length (default 88),
# rather than using the flake8 default of 79:
max-line-length = 88
exclude =
    __pycache__,
    .eggs,
    build,
    scripts,
    docs
extend-ignore =
    # See https://github.com/PyCQA/pycodestyle/issues/373
    E203,
    D202,
    T499

# For flake8-quotes
inline-quotes = double
