From 4f2eff418ec0ccda9a2c590ad836ebd67119c8d7 Mon Sep 17 00:00:00 2001 From: Enno Hermann Date: Mon, 6 May 2024 18:37:15 +0200 Subject: [PATCH] chore: enable ruff rules that already pass --- pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed64714e..b2c0a317 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -162,14 +162,9 @@ lint.extend-select = [ ] lint.ignore = [ - "E501", # line too long "E722", # bare except (TODO: fix these) "E731", # don't use lambdas "E741", # ambiguous variable name - "PLR0912", # too-many-branches - "PLR0913", # too-many-arguments - "PLR0915", # too-many-statements - "UP004", # useless-object-inheritance "F821", # TODO: enable "F841", # TODO: enable "PLW0602", # TODO: enable