-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
45 lines (45 loc) · 1.39 KB
/
pyrightconfig.json
File metadata and controls
45 lines (45 loc) · 1.39 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
{
"include": [
"blender_addon",
"frontend",
"warmup.py"
],
"exclude": [
"**/__pycache__",
"**/lib",
"**/*.log",
"blender_addon/lib"
],
"pythonVersion": "3.11",
"pythonPlatform": "Darwin",
"typeCheckingMode": "standard",
"useLibraryCodeForTypes": true,
"reportMissingImports": "warning",
"reportMissingTypeStubs": "none",
"reportUnusedImport": "warning",
"reportUnusedClass": "warning",
"reportUnusedFunction": "warning",
"reportUnusedVariable": "warning",
"reportDuplicateImport": "warning",
"reportOptionalSubscript": "warning",
"reportOptionalMemberAccess": "warning",
"reportPrivateUsage": "warning",
"reportConstantRedefinition": "none",
"reportIncompatibleMethodOverride": "warning",
"reportIncompatibleVariableOverride": "warning",
"reportUntypedFunctionDecorator": "none",
"reportUntypedClassDecorator": "none",
"reportUntypedBaseClass": "none",
"reportUntypedNamedTuple": "none",
"reportCallInDefaultInitializer": "none",
"reportUnnecessaryIsInstance": "warning",
"reportUnnecessaryCast": "warning",
"reportImplicitStringConcatenation": "warning",
"reportInvalidStringEscapeSequence": "warning",
"reportUnknownParameterType": "none",
"reportUnknownArgumentType": "none",
"reportUnknownLambdaType": "none",
"reportUnknownVariableType": "none",
"reportUnknownMemberType": "none",
"reportGeneralTypeIssues": "warning"
}