-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
29 lines (29 loc) · 836 Bytes
/
pyrightconfig.json
File metadata and controls
29 lines (29 loc) · 836 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
{
"include": [
"scripts"
],
"exclude": [
"**/__pycache__"
],
"ignore": [],
"typeCheckingMode": "basic",
"useLibraryCodeForTypes": false,
"strictListInference": true,
"strictDictionaryInference": true,
"strictSetInference": true,
"reportDuplicateImport": "warning",
"reportImportCycles": "error",
"reportIncompatibleVariableOverride": "error",
"reportOverlappingOverload": "error",
"reportPrivateImportUsage": "error",
"reportUninitializedInstanceVariable": "error",
"reportUnnecessaryCast": "error",
"reportUnnecessaryComparison": "error",
"reportUnnecessaryContains": "error",
"reportUnnecessaryIsInstance": "error",
// "reportUnnecessaryTypeIgnoreComment": "warning",
"reportUnusedClass": "warning",
"reportUnusedFunction": "warning",
"reportUnusedImport": "warning",
"reportUnusedVariable": "warning",
}