forked from AD-SDL/MADSci
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
44 lines (44 loc) · 1.43 KB
/
Copy pathpyrightconfig.json
File metadata and controls
44 lines (44 loc) · 1.43 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json",
"typeCheckingMode": "off",
"reportMissingTypeStubs": "none",
"reportUnknownMemberType": "none",
"reportUnknownParameterType": "none",
"reportUnknownVariableType": "none",
"reportUnknownArgumentType": "none",
"reportUntypedBaseClass": "none",
"reportUntypedClassDecorator": "none",
"reportUntypedFunctionDecorator": "none",
"reportGeneralTypeIssues": "none",
"reportOptionalMemberAccess": "none",
"reportOptionalSubscript": "none",
"reportOptionalCall": "none",
"reportOptionalIterable": "none",
"reportOptionalOperand": "none",
"reportPrivateImportUsage": "none",
"reportIncompatibleMethodOverride": "none",
"reportIncompatibleVariableOverride": "none",
"reportAttributeAccessIssue": "none",
"reportCallIssue": "none",
"reportIndexIssue": "none",
"reportOperatorIssue": "none",
"reportReturnType": "none",
"reportArgumentType": "none",
"reportAssignmentType": "none",
"reportPossiblyUnboundVariable": "none",
"reportUnboundVariable": "none",
"reportInvalidTypeForm": "none",
"reportMissingImports": "none",
"reportMissingModuleSource": "none",
"reportUnusedImport": "none",
"reportUnusedVariable": "none",
"reportDuplicateImport": "none",
"exclude": [
"**/__pycache__",
"**/.venv",
"**/node_modules",
"ui/**",
"**/dist",
"**/build"
]
}