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.
diff --git a/pyproject.toml b/pyproject.toml index cb15869..c07ab96 100644 --- a/pyproject.toml +++ b/pyproject.toml
@@ -136,18 +136,14 @@ "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 @@ "Q003", "COM812", "COM819", - "ISC001", - "ISC002", ] [tool.ruff.lint.mccabe]