From e52c4c8d338ec588d633ed2cd99a9bc62e14ba93 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 1 Oct 2024 18:09:49 +0200 Subject: [PATCH] STY: Disable deprecated ruff rules --- pyproject.toml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e865cd009..23827a996 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -135,14 +135,14 @@ select = [ "UP", ] ignore = [ - "B006", # TODO: enable - "B008", # TODO: enable + "B006", # TODO: enable + "B008", # TODO: enable "B007", "B011", - "B017", # TODO: enable + "B017", # TODO: enable "B018", "B020", - "B023", # TODO: enable + "B023", # TODO: enable "B028", "B904", "C401", @@ -150,13 +150,16 @@ ignore = [ "C416", "PERF203", "PIE790", - "PT004", + "PT004", # deprecated + "PT005", # deprecated "PT007", "PT011", "PT012", "PT017", "PT018", "PYI024", + "UP027", # deprecated + "UP038", # https://github.com/astral-sh/ruff/issues/7871 # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules "W191", "E111",