diff options
author | 2023-01-16 19:28:53 +0000 | |
---|---|---|
committer | 2023-01-16 19:28:53 +0000 | |
commit | 3962c73b009928b94a1cc1676c68b64d0cde0c4b (patch) | |
tree | 7354ee065f53681bf9e6ea1a633ac67d1354be7a | |
parent | Merge 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-- | .flake8 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |