[flake8]
exclude =
    __pycache__
    .coverage*
    .git/
    .pytest_cache/
    .venv*/
    .tox/
    docs/
# Report Cyclomatic Complexity higher than:
max_complexity = 7
max-line-length = 80
extend-ignore = E221
# E201 whitespace after '['
# E221 multiple spaces before operator
# E302 expected 2 blank lines, found 1
