[flake8]
max-line-length = 88
max-complexity = 18
# D203: blank line before class docstring
# E501: line too long
# E503: line break occurred before a binary operator
# F405: Method may be undefined or defined from start imports.
ignore = D203, E501, F405, W503

# NOTICE: flake8 is ran via a pre-commit hook, see the .pre-commit-config.yaml
#  for exludes as they take precedence over what is listed here.
exclude = __pycache__, migrations
#max-complexity = 10

format = pylint
statistics = True
