From 7616e29abd20cb8cb637ae093d76df2eb9bce26c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Val=C3=A9rian=20Rey?= Date: Sun, 15 Feb 2026 18:25:42 +0100 Subject: [PATCH] chore: Ignore ruff rule COM812 to avoid formatter conflicts Add COM812 to the ruff ignore list as it conflicts with the formatter. See https://github.com/astral-sh/ruff/issues/9216 for details. Co-Authored-By: Claude Sonnet 4.5 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2cbbebd4..05ab9285 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -154,6 +154,7 @@ ignore = [ "RUF010", # Use explicit conversion flag "RUF012", # Mutable default value for class attribute (a bit tedious to fix) "RET504", # Unnecessary assignment return statement + "COM812", # Trailing comma missing (conflicts with formatter, see https://github.com/astral-sh/ruff/issues/9216) ] [tool.ruff.lint.isort]