[flake8]
ignore =
    # E501: line too long
    E501,
    # W503: line break before binary operator
    W503,
max-complexity = 10
exclude =
    .git,
    __pycache__
