[flake8]
# Use a line length of 120 instead of pep8's default 79
max-line-length = 120
# Files not checked:
#  - migrations: most of these are autogenerated and don't need a check
#  - docs: contains autogenerated code that doesn't need a check
exclude = */migrations/*,docs
ignore = E731
