aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2019-10-03 12:02:15 -0700
committerGravatar MarkKoz <[email protected]>2019-10-03 12:05:00 -0700
commitd79e5335652cc3b59757eec6f4ffd302a343d67a (patch)
tree8b0c6a571a54523583c3207420031098a2188a31
parentAdd 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.
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 699d9650..1598f17c 100644
--- a/.flake8
+++ b/.flake8
@@ -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