-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyrightconfig.json
38 lines (34 loc) · 1.13 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
{
"include": [
"src"
],
"pythonVersion": "3.10",
"venvPath": ".",
"venv": "venv",
"stubPath": "./typings",
"reportAny": "none",
"reportGeneralTypeIssues": "information",
"reportAssignmentType": "none",
"reportUnknownArgumentType": "none",
"reportUnknownParameterType": "none",
"reportUnknownMemberType": "none",
"reportUnknownVariableType": "none",
"reportMissingParameterType": "none",
"reportUnknownLambdaType": "none",
"reportUnusedImport": "warning",
"reportUnusedClass": "warning",
"reportUnusedFunction": "warning",
"reportUnusedCallResult": "none",
"reportUnusedCoroutine": "warning",
"reportUnusedVariable": "warning",
"reportUnusedExpression": "warning",
"reportUnusedParameter": "warning",
"reportUnnecessaryIsInstance": "warning",
"reportUnnecessaryCast": "warning",
"reportDeprecated": "warning",
"reportImplicitOverride": "information",
"reportUnreachable": "information",
"reportRedeclaration": "information",
"reportConstantRedefinition": "none",
"reportUninitializedInstanceVariable": "information",
}