ci: Update pyright exclude list

This commit is contained in:
Philipp Hörist
2025-01-26 18:23:47 +01:00
parent 72aa209b43
commit 6454755a6a

View File

@@ -16,6 +16,15 @@ reportUnnecessaryTypeIgnoreComment = "error"
reportPropertyTypeMismatch = "error" reportPropertyTypeMismatch = "error"
reportMissingModuleSource = "none" reportMissingModuleSource = "none"
exclude = [
"**/__pycache__",
".git",
".venv",
"openpgp/*",
"pgp/*",
"triggers/*",
]
[tool.ruff] [tool.ruff]
line-length = 88 line-length = 88
target-version = "py310" target-version = "py310"