forked from Mirix-AI/MIRIX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
57 lines (56 loc) · 1.52 KB
/
Copy pathpyrightconfig.json
File metadata and controls
57 lines (56 loc) · 1.52 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"include": [
"mirix"
],
"exclude": [
"**/__pycache__",
"**/.venv",
"**/node_modules",
"**/.pytest_cache",
"**/dist",
"**/build",
"samples",
"tests",
"tmp",
"scripts",
"debug",
"test_mirix_env",
"**/site-packages"
],
"typeCheckingMode": "basic",
"reportMissingImports": "warning",
"reportMissingTypeStubs": false,
"reportUnknownMemberType": false,
"reportUnknownVariableType": false,
"reportUnknownArgumentType": false,
"reportUnknownParameterType": false,
"reportUnknownLambdaType": false,
"reportPrivateUsage": "none",
"reportConstantRedefinition": "warning",
"reportIncompatibleMethodOverride": "warning",
"reportGeneralTypeIssues": "none",
"reportOptionalMemberAccess": "none",
"reportOptionalSubscript": "none",
"reportOptionalCall": "none",
"reportOptionalIterable": "none",
"reportOptionalContextManager": "none",
"reportOptionalOperand": "none",
"reportUntypedFunctionDecorator": false,
"reportUntypedClassDecorator": false,
"reportUntypedBaseClass": false,
"reportUnnecessaryIsInstance": false,
"reportUnnecessaryCast": false,
"reportAttributeAccessIssue": "none",
"reportArgumentType": "warning",
"reportReturnType": "warning",
"reportCallIssue": "warning",
"reportAssignmentType": "warning",
"reportOperatorIssue": "warning",
"reportInvalidTypeForm": "warning",
"reportIndexIssue": "none",
"reportInvalidTypeArguments": "none",
"stubPath": "",
"venvPath": ".",
"venv": ".venv",
"pythonVersion": "3.10"
}