-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
26 lines (26 loc) · 789 Bytes
/
pyrightconfig.json
File metadata and controls
26 lines (26 loc) · 789 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pylance/schemas/pyrightconfig.schema.json",
"pythonVersion": "3.12",
"include": ["src", "tst"],
"exclude": [
"**/node_modules",
"**/__pycache__",
"**/migrations",
"**/build",
"**/dist",
"**/.venv",
"**/bup",
"**/wip",
"**/tmp"
],
"extraPaths": ["src"],
"typeCheckingMode": "basic",
"reportMissingImports": "warning",
"reportMissingTypeStubs": false,
"reportAttributeAccessIssue": false,
"reportGeneralTypeIssues": false,
"executionEnvironments": [
{ "root": "src", "pythonVersion": "3.12" },
{ "root": "tst", "pythonVersion": "3.12", "extraPaths": ["src"] }
]
}