diff options
author | 2019-10-03 12:02:15 -0700 | |
---|---|---|
committer | 2019-10-03 12:05:00 -0700 | |
commit | d79e5335652cc3b59757eec6f4ffd302a343d67a (patch) | |
tree | 8b0c6a571a54523583c3207420031098a2188a31 /.flake8 | |
parent | Add link to Contributing landing page to our website's navbar (#270) (diff) |
Fix migrations exclude in flake8
They were not being excluded when flake8 was invoked via pre-commit.
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ max-line-length=100 docstring-convention=all import-order-style=pycharm application_import_names=pydis_site -exclude=__pycache__, venv, .venv, **/migrations +exclude=__pycache__, venv, .venv, **/migrations/** ignore= B311,W503,E226,S311,T000 # Missing Docstrings |