From b782f25bb55398960c3dad132f18c58af9d76465 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Mon, 13 Jan 2025 21:40:01 +0100 Subject: [PATCH] Changes for ruff 0.9.1 Discard any reference to deprecated rules to avoid warnings. ISC001 and ISC002 used together are compatible with the ruff formatter, according to recent changes in the documentation. --- pyproject.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cb158691be..c07ab9601b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -136,18 +136,14 @@ select = [ "YTT", ] ignore = [ - "ANN101", "B904", "PLR0914", "PLR6201", "PLW2901", - "PT004", # deprecated - "PT005", # deprecated "RET505", "S404", "SIM105", "SIM115", - "UP027", # deprecated "UP038", # https://github.com/astral-sh/ruff/issues/7871 # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules "W191", @@ -162,8 +158,6 @@ ignore = [ "Q003", "COM812", "COM819", - "ISC001", - "ISC002", ] [tool.ruff.lint.mccabe]