forked from theFong/fastapi-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyrightconfig.json
81 lines (42 loc) · 1.57 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
{
"reportOptionalSubscript": true,
"reportOptionalMemberAccess": true,
"reportFunctionMemberAccess": true,
"reportOptionalCall": true,
"reportOptionalIterable": true,
"reportOptionalContextManager": true,
"reportOptionalOperand": true,
"strictListInference": true,
"strictDictionaryInference": true,
"reportConstantRedefinition": "error",
"reportIncompatibleMethodOverride": "error",
"reportIncompatibleVariableOverride": "error",
"reportDuplicateImport": "error",
"reportGeneralTypeIssues": "error",
"reportMissingImports": "error",
"reportImplicitStringConcatenation": "error",
"reportSelfClsParameterName": "error",
"reportWildcardImportFromLibrary": "error",
"reportUndefinedVariable": "error",
"reportUnboundVariable": "error",
"reportUnknownParameterType": "warning",
"reportUnknownArgumentType": "warning",
"reportUnknownLambdaType": "warning",
"reportMissingTypeArgument": "warning",
"reportUnnecessaryIsInstance": "warning",
"reportUnnecessaryCast": "warning",
"reportAssertAlwaysTrue": "warning",
"reportUnknownVariableType": "warning",
"reportUnknownMemberType": "warning",
"reportUntypedFunctionDecorator": "warning",
"reportUntypedClassDecorator": "warning",
"reportUntypedBaseClass": "warning",
"reportUntypedNamedTuple": "warning",
"reportPrivateUsage": "warning",
"reportImportCycles": "warning",
"reportUnusedImport": "warning",
"reportUnusedClass": "warning",
"reportUnusedFunction": "warning",
"reportUnusedVariable": "warning",
"reportUnusedCallResult": "warning"
}