From 9dcf236387fc87fe91a9c62beac407953820516d Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 23 Oct 2023 18:06:31 +0200 Subject: [PATCH] Align flake and ruff configs further --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index cd0c65916..bcfc1e551 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,6 +82,11 @@ extend-select = [ # "TCH", # flake8-type-checking "PTH", # flake8-use-pathlib ] +extend-ignore = [ + "E241", # Multiple spaces after comma + "E272", # Multiple spaces before keyword + "E221", # Multiple spaces before operator +] [tool.ruff.mccabe] max-complexity = 12