This repository was archived by the owner on Jan 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
82 lines (82 loc) · 2.46 KB
/
pyrightconfig.json
File metadata and controls
82 lines (82 loc) · 2.46 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
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
82
{
"include": ["src", "tests", "hooks", "commands"],
"exclude": [
"**/__pycache__",
".venv",
".git",
".mypy_cache",
".pytest_cache",
".ruff_cache",
"dist",
"build"
],
"pythonVersion": "3.11",
"pythonPlatform": "All",
"venvPath": ".",
"venv": ".venv",
"typeCheckingMode": "strict",
"reportMissingImports": true,
"reportMissingTypeStubs": false,
"reportUnusedImport": true,
"reportUnusedClass": true,
"reportUnusedFunction": true,
"reportUnusedVariable": true,
"reportDuplicateImport": true,
"reportPrivateUsage": true,
"reportConstantRedefinition": true,
"reportIncompatibleMethodOverride": true,
"reportIncompatibleVariableOverride": true,
"reportInvalidStringEscapeSequence": true,
"reportUnknownParameterType": true,
"reportUnknownArgumentType": true,
"reportUnknownLambdaType": true,
"reportUnknownVariableType": true,
"reportUnknownMemberType": true,
"reportMissingParameterType": true,
"reportMissingTypeArgument": true,
"reportUnnecessaryIsInstance": true,
"reportUnnecessaryCast": true,
"reportUnnecessaryComparison": true,
"reportAssertAlwaysTrue": true,
"reportSelfClsParameterName": true,
"reportImplicitStringConcatenation": false,
"reportUndefinedVariable": true,
"reportUnboundVariable": true,
"reportOptionalSubscript": true,
"reportOptionalMemberAccess": true,
"reportOptionalCall": true,
"reportOptionalIterable": true,
"reportOptionalContextManager": true,
"reportOptionalOperand": true,
"reportTypedDictNotRequiredAccess": true,
"reportGeneralTypeIssues": true,
"reportPropertyTypeMismatch": true,
"reportFunctionMemberAccess": true,
"reportInvalidTypeVarUse": true,
"reportCallInDefaultInitializer": true,
"reportUnnecessaryTypeIgnoreComment": true,
"reportDeprecated": true,
"reportUnsupportedDunderAll": false,
"executionEnvironments": [
{
"root": "src/git_notes_memory",
"extraPaths": ["src"],
"reportUnknownMemberType": "warning"
},
{
"root": "tests",
"extraPaths": ["src"],
"typeCheckingMode": "basic",
"reportUnknownMemberType": false,
"reportUnknownArgumentType": false,
"reportUnknownVariableType": false,
"reportUnknownParameterType": false,
"reportUnknownLambdaType": false,
"reportMissingParameterType": false,
"reportMissingTypeArgument": false,
"reportPrivateUsage": false,
"reportUnusedVariable": false,
"reportUnusedImport": false
}
]
}