-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
37 lines (37 loc) · 845 Bytes
/
pyrightconfig.json
File metadata and controls
37 lines (37 loc) · 845 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/pyright/schema/pyrightconfig.schema.json",
"venvPath": ".",
"venv": ".venv",
"pythonVersion": "3.12",
"include": [
"src/accessiweather/models.py",
"src/accessiweather/utils"
],
"exclude": [
"**/.venv",
"**/venv",
"**/.mypy_cache",
"**/.ruff_cache",
"**/__pycache__",
"build",
"dist",
"src/accessiweather/weather_gov_api_client",
"src/accessiweather/weatherapi_client",
"installer/build",
"installer/dist",
"docs",
".github"
],
"reportMissingImports": "warning",
"reportMissingTypeStubs": "none",
"typeCheckingMode": "basic",
"executionEnvironments": [
{
"root": "src/accessiweather",
"extraPaths": [
"src"
],
"pythonVersion": "3.12"
}
]
}