-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
44 lines (44 loc) · 943 Bytes
/
pyrightconfig.json
File metadata and controls
44 lines (44 loc) · 943 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"include": ["src", "tests", "noxfile.py"],
"exclude": [
"**/.venv",
"build",
"dist",
"scripts",
"examples",
"docs",
"**/node_modules",
"**/__pycache__"
],
"pythonVersion": "3.10",
"reportImplicitStringConcatenation": "none",
"reportAny": "none",
"reportExplicitAny": "none",
"reportUnannotatedClassAttribute": "none",
"executionEnvironments": [
{
"root": "noxfile.py"
},
{
"root": "src"
},
{
"root": "scripts"
},
{
"root": "examples",
"pythonVersion": "3.11"
},
{
"root": "tests",
"reportUnknownLambdaType": "none",
"reportUnknownMemberType": "none",
"reportArgumentType": "none",
"reportUnknownArgumentType": "none",
"reportUnknownVariableType": "none",
"reportPrivateUsage": "none",
"reportUnusedCallResult": "none",
"reportPrivateLocalImportUsage": "none"
}
]
}