-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
31 lines (31 loc) · 873 Bytes
/
pyrightconfig.json
File metadata and controls
31 lines (31 loc) · 873 Bytes
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
{
"include": [
"src/typed_diskcache",
"src/tests",
],
"extraPaths": [
"src"
],
"typeCheckingMode": "strict",
"pythonVersion": "3.10",
"pythonPlatform": "Linux",
"reportMissingTypeStubs": false,
"reportInconsistentConstructor": false,
"reportUnknownArgumentType": false,
"reportOverlappingOverload": false,
"reportUnknownVariableType": false,
"reportUnknownMemberType": false,
"reportUnnecessaryIsInstance": false,
"reportUnnecessaryComparison": false,
"reportDeprecated": false,
"reportPrivateUsage": false,
"reportUnnecessaryTypeIgnoreComment": true,
"reportImplicitOverride": true,
"executionEnvironments": [
{
"root": "src/tests",
"reportUnknownParameterType": false,
"reportMissingParameterType": false,
}
]
}