-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyrightconfig.json
39 lines (39 loc) · 1.17 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
{
"strictListInference": true,
"strictDictionaryInference": true,
"strictParameterNoneValue": true,
"enableTypeIgnoreComments": true,
"reportTypeshedErrors": true,
"reportMissingImports": true,
"reportMissingTypeStubs": true,
"reportImportCycles": true,
"reportUnusedImport": true,
"reportUnusedClass": true,
"reportUnusedFunction": true,
"reportUnusedVariable": true,
"reportOptionalSubscript": true,
"reportOptionalMemberAccess": true,
"reportOptionalCall": true,
"reportOptionalIterable": true,
"reportOptionalContextManager": true,
"reportOptionalOperand": true,
"reportUntypedFunctionDecorator": true,
"reportUntypedClassDecorator": true,
"reportUntypedBaseClass": true,
"reportUntypedNamedTuple": true,
"reportPrivateUsage": true,
"reportConstantRedefinition": true,
"reportIncompatibleMethodOverride": true,
"reportInvalidStringEscapeSequence": true,
"reportUnknownParameterType": true,
"reportUnknownVariableType": false,
"reportUnknownMemberType": false,
"reportCallInDefaultInitializer": true,
"reportUnnecessaryIsInstance": true,
"reportUnnecessaryCast": true,
"executionEnvironments": [
{
"root": "src"
}
]
}