aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2023-01-16 19:28:53 +0000
committerGravatar GitHub <[email protected]>2023-01-16 19:28:53 +0000
commit3962c73b009928b94a1cc1676c68b64d0cde0c4b (patch)
tree7354ee065f53681bf9e6ea1a633ac67d1354be7a
parentMerge pull request #836 from python-discord/dependabot/pip/gitpython-3.1.30 (diff)
Use `extend-ignore` instead of `ignore` in flake8 config
This prevents off-by-default rules from being overridden and turned on
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index e665771f..bd375f78 100644
--- a/.flake8
+++ b/.flake8
@@ -4,7 +4,7 @@ docstring-convention=all
import-order-style=pycharm
application_import_names=pydis_site
exclude=__pycache__, venv, .venv, **/migrations/**, .cache/, gunicorn.conf.py
-ignore=
+extend-ignore=
B311,W503,E226,S311,T000
# Missing Docstrings
D100,D104,D105,D107,