From 6454755a6aa9ac222b11a469990803a881769d87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 26 Jan 2025 18:23:47 +0100 Subject: [PATCH] ci: Update pyright exclude list --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b897dc7..f90db30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,15 @@ reportUnnecessaryTypeIgnoreComment = "error" reportPropertyTypeMismatch = "error" reportMissingModuleSource = "none" +exclude = [ + "**/__pycache__", + ".git", + ".venv", + "openpgp/*", + "pgp/*", + "triggers/*", +] + [tool.ruff] line-length = 88 target-version = "py310"