This repository was archived by the owner on Feb 1, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
55 lines (44 loc) · 1.62 KB
/
pyrightconfig.json
File metadata and controls
55 lines (44 loc) · 1.62 KB
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
{
"typeCheckingMode": "basic",
"pythonVersion": "3.8",
"pythonPlatform": "Windows",
"include": ["src", "scripts", "query", "tools"],
"exclude": [".venv", "venv", ".git", "__pycache__", ".pytest_cache", "*.egg-info"],
"extraPaths": ["src"],
"stubPath": "stubs",
"typeshedPath": "",
"reportUnusedImport": "warning",
"reportUnusedVariable": "warning",
"reportUnusedClass": "warning",
"reportUnusedFunction": "warning",
"reportDuplicateImport": "error",
"reportPrivateImportUsage": "warning",
"reportConstantRedefinition": "error",
"reportIncompatibleMethodOverride": "warning",
"reportIncompatibleVariableOverride": "warning",
"reportAssignmentType": "warning",
"reportAttributeAccessIssue": "warning",
"reportCallIssue": "warning",
"reportArgumentType": "warning",
"reportReturnType": "warning",
"reportOptionalSubscript": "information",
"reportOptionalMemberAccess": "information",
"reportOptionalOperand": "information",
"reportOptionalIterable": "information",
"reportOptionalContextManager": "information",
"reportMissingImports": "warning",
"reportMissingModuleSource": "warning",
"reportMissingTypeStubs": "information",
"reportUnknownParameterType": "information",
"reportUnknownVariableType": "information",
"reportUnknownMemberType": "information",
"reportUnknownArgumentType": "information",
"reportUnknownLambdaType": "information",
"reportGeneralTypeIssues": "warning",
"reportUnnecessaryIsInstance": "warning",
"reportUnnecessaryCast": "warning",
"reportUnnecessaryComparison": "warning",
"reportPrivateUsage": "warning",
"venvPath": ".",
"venv": ".venv"
}