-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
41 lines (41 loc) · 1.38 KB
/
pyrightconfig.json
File metadata and controls
41 lines (41 loc) · 1.38 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
{
"typeCheckingMode": "strict",
"include": [
"src",
"test",
],
"exclude": [
"nbs",
],
"reportArgumentType": "warning",
"reportAssignmentType": "warning",
"reportAttributeAccessIssue": "warning",
"reportCallIssue": "warning",
"reportMissingImports": "error",
"reportMissingParameterType": "warning",
"reportMissingTypeArgument": "information",
"reportMissingTypeStubs": "information",
"reportOperatorIssue": "warning",
"reportOptionalMemberAccess": "warning",
"reportOptionalOperand": "warning",
"reportPrivateImportUsage": "warning",
"reportPrivateUsage": "warning",
"reportRedeclaration": "warning",
"reportReturnType": "warning",
"reportUnnecessaryComparison": "warning",
"reportUnnecessaryIsInstance": "warning",
"reportUnknownArgumentType": "none",
"reportUnknownLambdaType": "none",
"reportUnknownMemberType": "none",
"reportUnknownParameterType": "none",
"reportUnknownVariableType": "none",
"reportUnusedExpression": "warning",
"reportUnusedImport": "warning",
"reportUnusedVariable": "warning",
"reportUntypedFunctionDecorator": "warning",
"reportUntypedBaseClass": "warning",
"reportGeneralTypeIssues": "warning",
"reportFunctionMemberAccess": "warning",
"reportIndexIssue": "warning",
"reportIncompatibleVariableOverride": "warning",
}