From e53d6f09bc584f752200a11b686ec628b8c4c09d Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Sun, 1 Dec 2024 12:02:11 +0500 Subject: [PATCH] Add flake8-comprehensions and flake8-debugger rules to ruff. --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1cbf4ac13..9d88b4e80 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -238,6 +238,10 @@ filterwarnings = [] extend-select = [ # flake8-bugbear "B", + # flake8-comprehensions + "C4", + # flake8-debugger + "T10", ] ignore = [ # Assigning to `os.environ` doesn't clear the environment.