-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyrightconfig.json
45 lines (45 loc) · 1.69 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
{
"pythonVersion": "3.9",
"enableTypeIgnoreComments": true,
"typeCheckingMode": "strict",
"reportAttributeAccessIssue": "none",
"reportAssignmentType": "none",
"reportCallIssue": "none",
"reportIncompleteStub": "none",
"reportMissingImports": "none",
"reportMissingParameterType": "none",
"reportMissingTypeStubs": "none",
"reportUnknownMemberType": "none",
"reportUnknownParameterType": "none",
"reportUnknownVariableType": "none",
"reportUnusedFunction": "none",
"reportUninitializedInstanceVariable": "none",
"reportMissingModuleSource": "none",
"reportIncompatibleMethodOverride": "none",
"reportIncompatibleVariableOverride": "none",
"reportUnknownArgumentType": "none",
"reportUnusedVariable": "none",
"reportUnusedImport": "none",
"reportUnnecessaryContains": "none",
"reportRedeclaration": "none",
"reportUntypedFunctionDecorator": "none",
"reportUntypedClassDecorator": "none",
"reportFunctionMemberAccess": "none",
"reportUntypedBaseClass": "warning",
"reportAbstractUsage": "warning",
"reportMissingTypeArgument": "warning",
"reportUnknownLambdaType": "warning",
"reportPrivateUsage": "warning",
"reportOptionalOperand": "warning",
"reportInvalidTypeForm": "warning",
"reportUnnecessaryComparison": "warning",
"reportReturnType": "warning",
"reportGeneralTypeIssues": "warning",
"reportOptionalMemberAccess": "warning",
"reportUnnecessaryTypeIgnoreComment": "warning",
"reportUnnecessaryIsInstance": "warning",
"reportOperatorIssue": "warning",
"reportArgumentType": "warning",
"reportIndexIssue": "warning",
"reportCallInDefaultInitializer": "error"
}