ci: ignore specific pyright flags

This commit is contained in:
Travis Abendshien
2025-02-17 14:52:59 -08:00
parent db408f09c4
commit fe94d84b94

View File

@@ -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"]