-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 803 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (23 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[tool.basedpyright]
typeCheckingMode = "standard"
extraPaths = ["."]
reportUnknownMemberType = false
reportUnknownVariableType = false
reportUnknownArgumentType = false
reportUnknownParameterType = false
reportMissingTypeStubs = false
[[tool.basedpyright.executionEnvironments]]
root = "./vrptw/model.py" # Use the exact filename or path
reportAttributeAccessIssue = "none"
reportGeneralTypeIssues = "none"
[[tool.basedpyright.executionEnvironments]]
root = "./src/vrptw/model.py" # Use the exact filename or path
reportAttributeAccessIssue = "none"
reportGeneralTypeIssues = "none"
[[tool.basedpyright.executionEnvironments]]
root = "App"
reportUnknownVariableType = "none"
reportCallIssue = "none"
reportAttributeAccessIssue = "none"
reportArgumentType = "none"
reportGeneralTypeIssues = "none"