From b840984780c5fa8e8c84ba76555b9123fd316f60 Mon Sep 17 00:00:00 2001 From: Paillat-dev Date: Sun, 9 Mar 2025 18:25:20 +0100 Subject: [PATCH] :wrench: Add ISC003 to pyproject.toml ruff ignore as it conflicts with basedpyright --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1b985e3..a3a5960 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,5 +116,6 @@ extend-ignore = [ "FBT002", "PLR2004", "PLR0913", - "C901" + "C901", + "ISC003" # conflicts with basedpyright reportImplicitStringConcatenation ]