-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
57 lines (57 loc) · 1.76 KB
/
pyrightconfig.json
File metadata and controls
57 lines (57 loc) · 1.76 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
{
"typeCheckingMode": "strict",
// Disabled error types as requested
"reportMissingTypeStubs": false,
"reportUnknownMemberType": false,
// Enable use of library code for types
"useLibraryCodeForTypes": true,
// Core type checking options
"reportGeneralTypeIssues": true,
"reportOptionalMemberAccess": true,
"reportOptionalCall": true,
"reportOptionalIterable": true,
"reportOptionalSubscript": true,
"reportOptionalOperand": true,
"reportPrivateImportUsage": true,
"reportPrivateUsage": true,
"reportConstantRedefinition": true,
"reportIncompatibleMethodOverride": true,
"reportIncompatibleVariableOverride": true,
"reportOverlappingOverload": true,
"reportUninitializedInstanceVariable": true,
"reportInvalidStringEscapeSequence": true,
"reportUnknownParameterType": true,
"reportFunctionMemberAccess": true,
// Code quality checks
"reportImportCycles": false,
"reportImplicitStringConcatenation": true,
"reportUndefinedVariable": true,
"reportUnboundVariable": true,
"reportInvalidTypeVarUse": true,
"reportCallInDefaultInitializer": true,
"reportUnnecessaryIsInstance": true,
"reportUnnecessaryCast": true,
"reportUnnecessaryComparison": true,
"reportUnnecessaryContains": true,
"reportAssertAlwaysTrue": true,
"reportSelfClsParameterName": true,
"reportUnknownVariableType": false,
// Project configuration
"pythonVersion": "3.13",
"include": [
"agentle",
"tests"
],
"exclude": [
"**/node_modules",
"**/__pycache__",
"**/.git",
"**/venv",
"**/.venv",
"**/build",
"**/dist"
],
// Virtual environment settings
"venvPath": ".",
"venv": ".venv",
}