From 9a43834d4032026e43662570281e69b0061a430b Mon Sep 17 00:00:00 2001 From: Julien <120588494+julien4215@users.noreply.github.com> Date: Mon, 22 Apr 2024 18:52:53 +0200 Subject: [PATCH] ignore COM812 rule --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 64b9e112e7..67d609c09b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,6 +50,7 @@ ignore = [ "SIM102", "SIM105", "RUF012", # We may want to enable "Mutable class attributes should be annotated with `typing.ClassVar`" + "COM812", # Not recommended because we also use ruff as a formatter (see https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules) ] # Allow fix for all enabled rules (when `--fix`) is provided.