[flake8]
max-complexity = 10
max-line-length = 88
# E203: whitespace before ':'
# W503: line break before binary operator
# E501: line too long (handled by black)
# C901: function too complex
extend-ignore = E203, W503, E501, C901
exclude =
    migrations/*
    .tox
