From 8f7fc5edef3a3b83ca7aacaa7a0a8a4d0795e109 Mon Sep 17 00:00:00 2001 From: Pieter De Gendt Date: Mon, 4 Nov 2024 15:04:39 +0100 Subject: [PATCH] project: Extend ruff check with flake8-bugbear Enable flake8-bugbear rules when running ruff check. Signed-off-by: Pieter De Gendt --- pyproject.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ac29a2ac..63fd0fbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,11 +50,9 @@ line-length = 100 [tool.ruff.lint] extend-select = [ -<<<<<<< HEAD "I", # isort -======= + "B", # flake8-bugbear "E", # pycodestyle errors ->>>>>>> f20fd71 (project: Extend ruff check with pycodestyle) "UP", # pyupgrade "W", # pycodestyle warnings ]