From a59123086e3b86000006c438c3db6c48624a4d4c Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sun, 4 Aug 2024 11:28:13 -0400 Subject: [PATCH] add incompatible rules to the ignore list Signed-off-by: ahuston-0 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ee22431..3ecde5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,8 @@ ignore = [ "ANN101", # (perm) this rule is deprecated "ANN102", # (perm) this rule is deprecated "G004", # (perm) this is a performance nit + "COM812", # https://docs.astral.sh/ruff/rules/missing-trailing-comma/ + "ISC001", # https://docs.astral.sh/ruff/rules/single-line-implicit-string-concatenation/ ] [tool.ruff.lint.per-file-ignores]