-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
72 lines (72 loc) · 2.36 KB
/
pyrightconfig.json
File metadata and controls
72 lines (72 loc) · 2.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"exclude": [
"**/__pycache__",
"**/.pytest_cache"
],
"include": [
"awslabs"
],
"pythonVersion": "3.10",
"reportArgumentType": false,
"reportAssertAlwaysTrue": false,
"reportCallInDefaultInitializer": false,
"reportCallIssue": false,
"reportConstantRedefinition": false,
"reportDuplicateImport": false,
"reportGeneralTypeIssues": false,
"reportImplicitOverride": false,
"reportImplicitStringConcatenation": false,
"reportIncompatibleMethodOverride": false,
"reportIncompatibleVariableOverride": false,
"reportIncompleteStub": false,
"reportInvalidStringEscapeSequence": false,
"reportInvalidStubStatement": false,
"reportInvalidTypeArg": false,
"reportInvalidTypeForm": false,
"reportInvalidTypeVarUse": false,
"reportMissingImports": false,
"reportMissingModuleSource": false,
"reportMissingParameterType": false,
"reportMissingReturn": false,
"reportMissingTypeArgument": false,
"reportMissingTypeStubs": false,
"reportOptionalCall": false,
"reportOptionalContextManager": false,
"reportOptionalIterable": false,
"reportOptionalMemberAccess": false,
"reportOptionalOperand": false,
"reportOptionalSubscript": false,
"reportOverlappingOverload": false,
"reportPrivateImportUsage": false,
"reportPrivateUsage": false,
"reportPropertyTypeMismatch": false,
"reportReturnType": false,
"reportSelfClsParameterName": false,
"reportTypeCommentUsage": false,
"reportUnboundVariable": false,
"reportUndefinedVariable": false,
"reportUninitializedInstanceVariable": false,
"reportUnknownArgumentType": false,
"reportUnknownLambdaType": false,
"reportUnknownMemberType": false,
"reportUnknownParameterType": false,
"reportUnknownVariableType": false,
"reportUnnecessaryCast": false,
"reportUnnecessaryComparison": false,
"reportUnnecessaryIsInstance": false,
"reportUnnecessaryTypeIgnoreComment": false,
"reportUnsupportedDunderAll": false,
"reportUntypedBaseClass": false,
"reportUntypedClassDecorator": false,
"reportUntypedFunctionDecorator": false,
"reportUntypedNamedTuple": false,
"reportUnusedCallResult": false,
"reportUnusedClass": false,
"reportUnusedCoroutine": false,
"reportUnusedExpression": false,
"reportUnusedFunction": false,
"reportUnusedImport": false,
"reportUnusedVariable": false,
"reportWildcardImportFromLibrary": false,
"typeCheckingMode": "basic"
}