-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyrightconfig.json
52 lines (52 loc) · 1.62 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
{
"pythonVersion": "3.10",
"include": [
"src",
"test"
],
"exclude": [
"**/__pycache__"
],
"deprecateTypingAliases": true,
"reportPropertyTypeMismatch": true,
"reportUnusedImport": true,
"reportUnusedClass": true,
"reportUnusedVariable": true,
"reportDuplicateImport": true,
"reportUntypedFunctionDecorator": true,
"reportUntypedClassDecorator": true,
"reportUntypedBaseClass": true,
"reportUntypedNamedTuple": true,
"reportConstantRedefinition": true,
"reportDeprecated": true,
"reportInconsistentConstructor": true,
"reportUnknownParameterType": true,
"reportMissingParameterType": true,
"reportMissingTypeArgument": true,
"reportUnnecessaryCast": true,
"reportUnnecessaryContains": true,
"reportImplicitStringConcatenation": true,
"reportInvalidStubStatement": true,
"reportIncompleteStub": true,
"reportUnnecessaryTypeIgnoreComment": true,
"reportMatchNotExhaustive": true,
"reportShadowedImports": true,
"reportMissingTypeStubs": false,
"reportImportCycles": false,
"reportUnusedFunction": false,
"reportMissingSuperCall": false,
"reportPrivateUsage": false,
"reportUninitializedInstanceVariable": false,
"reportUnknownArgumentType": false,
"reportUnknownLambdaType": false,
"reportUnknownVariableType": false,
"reportUnknownMemberType": false,
"reportCallInDefaultInitializer": false,
"reportUnnecessaryIsInstance": false,
"reportUnnecessaryComparison": false,
"reportUnusedCallResult": false,
"reportUnusedExpression": false,
"reportImplicitOverride": false,
"reportIncompatibleVariableOverride": false,
"reportIncompatibleMethodOverride": false
}