Skip to content

Commit fe94d84

Browse files
committed
ci: ignore specific pyright flags
1 parent db408f0 commit fe94d84

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,17 @@ convention = "google"
2020
select = ["B", "D", "E", "F", "FBT003", "I", "N", "SIM", "T20", "UP"]
2121
ignore = ["D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107"]
2222

23+
[tool.pyright]
24+
ignore = [".venv/**"]
25+
include = ["tagstudio/**"]
26+
reportAny = false
27+
reportImplicitStringConcatenation = false
28+
# reportOptionalMemberAccess = false
29+
reportUnannotatedClassAttribute = false
30+
reportUnknownArgumentType = false
31+
reportUnknownMemberType = false
32+
reportUnusedCallResult = false
33+
2334
[tool.mypy]
2435
strict_optional = false
2536
disable_error_code = ["func-returns-value", "import-untyped"]

0 commit comments

Comments
 (0)