From 31f40a92ddee0d5627502f450ceb0a03842a7a74 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Mon, 2 Oct 2023 13:22:33 +0200 Subject: [PATCH] [ruff conf] Simplify the ruff configuration --- pyproject.toml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7e9ef35336..ac52bd9c23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -158,13 +158,3 @@ ignore = [ "B905", # `zip()` without an explicit `strict=` parameter "RUF012", # mutable default values in class attributes ] - -fixable = [ - "E", # pycodestyle - "F", # pyflakes - "W", # pycodestyle - "B", # bugbear - "I", # isort - "RUF", # ruff - "UP", # pyupgrade -]