From d79e5335652cc3b59757eec6f4ffd302a343d67a Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Thu, 3 Oct 2019 12:02:15 -0700 Subject: Fix migrations exclude in flake8 They were not being excluded when flake8 was invoked via pre-commit. --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.flake8') 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 -- cgit v1.2.3