[flake8]
max-line-length = 88
ignore =
    # E731: do not assign a lambda expression, use a def
    E731,
    # E203: whitespace before : (refs: https://github.com/PyCQA/pycodestyle/issues/373)
    E203,
    # W503: line break occurred before a binary operator
    W503
