forked from gretel/meshgram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
27 lines (27 loc) · 836 Bytes
/
pyrightconfig.json
File metadata and controls
27 lines (27 loc) · 836 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
{
"include": ["src"],
"pythonVersion": "3.13",
"typeCheckingMode": "basic",
"reportUnknownMemberType": "none",
"reportUnknownArgumentType": "none",
"reportUnknownVariableType": "none",
"reportUnknownParameterType": "none",
"reportAny": "none",
"reportMissingTypeStubs": "none",
"reportOptionalMemberAccess": "none",
"reportOptionalOperand": "none",
"reportFunctionMemberAccess": "none",
"reportAttributeAccessIssue": "none",
"reportGeneralTypeIssues": "none",
"reportPrivateUsage": "none",
"reportUnusedImport": "none",
"reportUnusedVariable": "none",
"reportUnusedClass": "none",
"reportUnusedFunction": "none",
"reportUnusedCoroutine": "none",
"reportIncompatibleMethodOverride": "none",
"reportIncompatibleVariableOverride": "none",
"executionEnvironments": [
{ "root": "src" }
]
}