Skip to content

Commit

Permalink
chore: typing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Dec 19, 2024
1 parent caf4cb1 commit 4ad7b93
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ select = [
# "TD", # flake8-todos
"T10", # flake8-debugger
# "T20", # flake8-print
"TCH", # flake8-type-checking
"TC", # flake8-type-checking
"TID", # flake8-tidy-imports
"TRY", # tryceratops
"UP", # PyUpgrade
Expand Down Expand Up @@ -218,15 +218,23 @@ combine-as-imports = true
"tests/test_decorators.py" = ["PLR2004"]

[tool.pyright]
venvPath = "."
venv = ".venv"
pythonVersion = "3.12"
pythonPlatform = "All"
typeCheckingMode = "basic"
deprecateTypingAliases = true
reportMissingTypeStubs = false
reportUnusedCallResult = false
reportUnknownVariableType = false
reportAny = false
reportImplicitOverride = false
reportUnusedFunction = false
reportImplicitStringConcatenation = false
reportIgnoreCommentWithoutRule = false
reportUnannotatedClassAttribute = false
reportSelfClsParameterName = false
reportPrivateImportUsage = false

[tool.mknodes]
allowed-commit-types = [
Expand Down

0 comments on commit 4ad7b93

Please sign in to comment.