From b2955c0465daa2fb8d9cfdd4a2af311c1c580a58 Mon Sep 17 00:00:00 2001 From: Lendemor Date: Tue, 28 Jan 2025 22:46:54 +0100 Subject: [PATCH] ignore RUF008 for now --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cd2a473a3..81376f704 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -87,7 +87,7 @@ target-version = "py310" output-format = "concise" lint.isort.split-on-trailing-comma = false lint.select = ["B", "C4", "D", "E", "ERA", "F", "FURB", "I", "N", "PERF", "PGH", "PTH", "RUF", "SIM", "T", "TRY", "W"] -lint.ignore = ["B008", "D205", "E501", "F403", "SIM115", "RUF006", "RUF012", "TRY0"] +lint.ignore = ["B008", "D205", "E501", "F403", "SIM115", "RUF006", "RUF008", "RUF012", "TRY0"] lint.pydocstyle.convention = "google" [tool.ruff.lint.per-file-ignores]