From 99c3a47114ad755a1363011a5b2fad29ec335dd3 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Mon, 4 Mar 2024 12:27:18 +0100 Subject: [PATCH] Apply repo-review suggestion: RF101: Bugbear must be selected Must select the flake8-bugbear `B` checks. --- ruff.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ruff.toml b/ruff.toml index c0dc0909..c5ff7255 100644 --- a/ruff.toml +++ b/ruff.toml @@ -4,11 +4,15 @@ exclude = [ [lint] extend-select = [ + "B", # https://docs.astral.sh/ruff/rules/#flake8-bugbear "I", # https://docs.astral.sh/ruff/rules/#isort-i "UP", # https://docs.astral.sh/ruff/rules/#pyupgrade-up ] ignore = [ # FIXME: apply the following rules + "B007", + "B023", + "B026", "F401", "F841", "E402",