-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
80 lines (80 loc) · 2.49 KB
/
pyrightconfig.json
File metadata and controls
80 lines (80 loc) · 2.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"include": ["backend"],
"exclude": [
"**/node_modules",
"**/__pycache__",
"**/.*",
"**/airflow_env/**",
"**/venv/**",
"**/env/**",
"**/site-packages/**",
"**/test_*.py",
"**/tests/**/*.py",
"**/*_test.py"
],
"ignore": [
"**/migrations",
"**/airflow_env/lib/python3.9/site-packages/**",
"**/venv/lib/python3.9/site-packages/**"
],
"defineConstant": {
"DEBUG": true
},
"venvPath": ".",
"venv": "venv",
"pythonVersion": "3.9",
"typeCheckingMode": "off",
"useLibraryCodeForTypes": true,
"reportMissingImports": "none",
"reportMissingModuleSource": "none",
"reportMissingTypeStubs": "none",
"reportGeneralTypeIssues": "none",
"reportOptionalMemberAccess": "none",
"reportOptionalSubscript": "none",
"reportPrivateUsage": "none",
"reportUnknownMemberType": "none",
"reportUnknownParameterType": "none",
"reportUnknownArgumentType": "none",
"reportUnknownVariableType": "none",
"reportUntypedFunctionDecorator": "none",
"reportUntypedBaseClass": "none",
"reportUntypedClassDecorator": "none",
"reportOptionalCall": "none",
"reportPropertyTypeMismatch": "none",
"reportInvalidTypeVarUse": "none",
"reportInvalidStringEscapeSequence": "warning",
"reportUndefinedVariable": "warning",
"reportUnboundVariable": "warning",
"reportInvalidStubStatement": "none",
"reportIncompleteStub": "none",
"reportUnsupportedDunderAll": "none",
"reportUnusedImport": "none",
"reportUnusedClass": "warning",
"reportUnusedFunction": "none",
"reportUnusedVariable": "none",
"reportDuplicateImport": "none",
"pythonPlatform": "Darwin",
"stubPath": "./typings",
"extraPaths": [
"./backend",
"./backend/app"
],
"functionDecorators": [
"fastapi.routing.get",
"fastapi.routing.post",
"fastapi.routing.put",
"fastapi.routing.delete",
"fastapi.routing.patch",
"fastapi.routing.head",
"fastapi.routing.options",
"fastapi.routing.trace",
"fastapi.applications.FastAPI.get",
"fastapi.applications.FastAPI.post",
"fastapi.applications.FastAPI.put",
"fastapi.applications.FastAPI.delete",
"fastapi.applications.FastAPI.patch",
"fastapi.applications.FastAPI.head",
"fastapi.applications.FastAPI.options",
"fastapi.applications.FastAPI.trace"
]
}