From 4de55256b1b9bce002e529f7424651c08712d627 Mon Sep 17 00:00:00 2001 From: Alexander Saprykin Date: Thu, 24 Oct 2024 15:44:44 +0200 Subject: [PATCH] Add flake8-debugger plugin for ruff (#2329) --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5e693115c1..2651976e3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -119,6 +119,8 @@ select = [ "RUF", # flake8-simplify "SIM", + # flake8-debugger + "T10", ] extend-ignore = [ # B904 requires using `raise ... from ...` to explicitly tell what to do with "parent"