From 3962c73b009928b94a1cc1676c68b64d0cde0c4b Mon Sep 17 00:00:00 2001 From: wookie184 Date: Mon, 16 Jan 2023 19:28:53 +0000 Subject: Use `extend-ignore` instead of `ignore` in flake8 config This prevents off-by-default rules from being overridden and turned on --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.flake8') 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, -- cgit v1.2.3