-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyrightconfig.json
93 lines (93 loc) · 3.42 KB
/
pyrightconfig.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"analyzeUnannotatedFunctions": true,
"deprecateTypingAliases": false,
"disableBytesTypePromotions": true,
"enableExperimentalFeatures": false,
"enableReachabilityAnalysis": true,
"enableTypeIgnoreComments": true,
"reportAbstractUsage": "error",
"reportArgumentType": "error",
"reportAssertAlwaysTrue": "error",
"reportAssertTypeFailure": "error",
"reportAssignmentType": "error",
"reportAttributeAccessIssue": "error",
"reportCallInDefaultInitializer": "error",
"reportCallIssue": "error",
"reportConstantRedefinition": "error",
"reportDeprecated": "error",
"reportDuplicateImport": "error",
"reportFunctionMemberAccess": "error",
"reportGeneralTypeIssues": "error",
"reportImplicitOverride": "error",
"reportImplicitStringConcatenation": "error",
"reportImportCycles": "error",
"reportIncompatibleMethodOverride": "error",
"reportIncompatibleVariableOverride": "error",
"reportIncompleteStub": "error",
"reportInconsistentConstructor": "error",
"reportInconsistentOverload": "error",
"reportIndexIssue": "error",
"reportInvalidStringEscapeSequence": "error",
"reportInvalidStubStatement": "error",
"reportInvalidTypeArguments": "error",
"reportInvalidTypeForm": "error",
"reportInvalidTypeVarUse": "error",
"reportMatchNotExhaustive": "error",
"reportMissingImports": "error",
"reportMissingModuleSource": "warning",
"reportMissingParameterType": "error",
"reportMissingSuperCall": "error",
"reportMissingTypeArgument": "error",
"reportMissingTypeStubs": "none",
"reportNoOverloadImplementation": "error",
"reportOperatorIssue": "error",
"reportOptionalCall": "error",
"reportOptionalContextManager": "error",
"reportOptionalIterable": "error",
"reportOptionalMemberAccess": "error",
"reportOptionalOperand": "error",
"reportOptionalSubscript": "error",
"reportOverlappingOverload": "error",
"reportPossiblyUnboundVariable": "error",
"reportPrivateImportUsage": "error",
"reportPrivateUsage": "error",
"reportPropertyTypeMismatch ": "error",
"reportRedeclaration": "error",
"reportReturnType": "error",
"reportSelfClsParameterName": "error",
"reportShadowedImports": "error",
"reportTypeCommentUsage": "error",
"reportTypedDictNotRequiredAccess": "error",
"reportUnboundVariable": "error",
"reportUndefinedVariable": "error",
"reportUnhashable": "error",
"reportUninitializedInstanceVariable": "error",
"reportUnknownArgumentType": "error",
"reportUnknownLambdaType": "error",
"reportUnknownMemberType": "error",
"reportUnknownParameterType": "error",
"reportUnknownVariableType": "error",
"reportUnnecessaryCast": "error",
"reportUnnecessaryComparison ": "error",
"reportUnnecessaryContains": "error",
"reportUnnecessaryIsInstance": "error",
"reportUnnecessaryTypeIgnoreComment": "error",
"reportUnsupportedDunderAll": "error",
"reportUntypedBaseClass": "error",
"reportUntypedClassDecorator": "error",
"reportUntypedFunctionDecorator": "error",
"reportUntypedNamedTuple": "error",
"reportUnusedCallResult": "error",
"reportUnusedClass": "error",
"reportUnusedCoroutine": "error",
"reportUnusedExcept": "error",
"reportUnusedExpression": "error",
"reportUnusedFunction": "error",
"reportUnusedImport": "error",
"reportUnusedVariable": "error",
"reportWildcardImportFromLibrary": "error",
"strictDictionaryInference": true,
"strictListInference": true,
"strictParameterNoneValue": true,
"strictSetInference": true
}