From 9d60c78adcd4fe76f77553eea072680f5e32d2b0 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Thu, 20 Mar 2025 01:15:45 -0700 Subject: [PATCH] ci: update pyright rules - Ignore "reportIgnoreCommentWithoutRule" - Ignore "reportMissingTypeArgument" --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4fdcbd41..bbbe30bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,7 +83,9 @@ qt_api = "pyside6" ignore = [".venv/**"] include = ["src/tagstudio/**"] reportAny = false +reportIgnoreCommentWithoutRule = false reportImplicitStringConcatenation = false +reportMissingTypeArgument = false # reportOptionalMemberAccess = false reportUnannotatedClassAttribute = false reportUnknownArgumentType = false