From fe94d84b94c645b10929349707bcfe2659af8902 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Mon, 17 Feb 2025 14:52:59 -0800 Subject: [PATCH] ci: ignore specific pyright flags --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fd447ea66..a7c8e40ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,17 @@ convention = "google" select = ["B", "D", "E", "F", "FBT003", "I", "N", "SIM", "T20", "UP"] ignore = ["D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107"] +[tool.pyright] +ignore = [".venv/**"] +include = ["tagstudio/**"] +reportAny = false +reportImplicitStringConcatenation = false +# reportOptionalMemberAccess = false +reportUnannotatedClassAttribute = false +reportUnknownArgumentType = false +reportUnknownMemberType = false +reportUnusedCallResult = false + [tool.mypy] strict_optional = false disable_error_code = ["func-returns-value", "import-untyped"]