We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c6e60a commit 69decf9Copy full SHA for 69decf9
1 file changed
pyproject.toml
@@ -66,13 +66,29 @@ package = "https://pypi.org/project/deeptab/"
66
67
# code quality tools
68
[tool.pyright]
69
-ignore = []
70
-reportMissingImports = true
71
-reportMissingTypeStubs = false
+include = ["deeptab", "tests"]
+exclude = [
+ "**/__pycache__",
72
+ ".venv",
73
+ "build",
74
+ "dist",
75
+ "docs",
76
+ "notebooks",
77
+ "examples",
78
+]
79
+
80
pythonVersion = "3.10"
81
+typeCheckingMode = "basic"
82
venvPath = "."
83
venv = ".venv"
84
85
+reportMissingImports = true
86
+reportMissingTypeStubs = false
87
+reportPrivateImportUsage = false
88
+reportUnknownMemberType = false
89
+reportUnknownArgumentType = false
90
+reportUnknownVariableType = false
91
92
# Configure code linting
93
[tool.ruff]
94
line-length = 120
0 commit comments