-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.code-workspace
104 lines (104 loc) · 3.22 KB
/
api.code-workspace
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"folders": [
{
"name": "Root",
"path": ".",
"settings": {
"python.analysis.extraPaths": [
"."
],
"python.venvPath": ".venv",
}
},
{
"name": "Functions / Download Service",
"path": "functions/download_service",
"settings": {
"python.analysis.extraPaths": [
"functions/download_service"
],
"python.venvPath": "functions/download_service/.venv",
}
},
{
"name": "Functions / Email Service",
"path": "functions/email_service",
"settings": {
"python.analysis.extraPaths": [
"functions/email_service"
],
"python.venvPath": "functions/email_service/.venv",
}
}
],
"settings": {
"python.languageServer": "Pylance",
"python.analysis.extraPaths": [],
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticSeverityOverrides": {
"reportUnknownArgumentType": "information",
"reportOptionalSubscript": "information",
"reportOptionalIterable": "information",
"reportArgumentType": "information",
"reportGeneralTypeIssues": "information",
},
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.coverage": true,
"**/*.egg-info": true,
"**/.ruff_cache": true,
"**/.mypy_cache": true,
"**/coverage.xml": true,
},
"ruff.lint.args": [
"--config=pyproject.toml"
],
"ruff.format.args": [
"--config=pyproject.toml"
]
},
"launch": {
"configurations": [
{
"name": "Python: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"PYTHONPATH": "${workspaceFolder}"
}
}
],
"compounds": []
},
"extensions": {
"recommendations": [
"ms-python.python",
"tobiasalthoff.atom-material-theme",
"ms-vscode.atom-keybindings",
"amazonwebservices.aws-toolkit-vscode",
"samuelcolvin.jinjahtml",
"aws-scripting-guy.cform",
"pomdtr.excalidraw-editor",
"github.vscode-github-actions",
"github.copilot",
"codezombiech.gitignore",
"eamodio.gitlens",
"znck.grammarly",
"davidwang.ini-for-vscode",
"zainchen.json",
"bierner.markdown-emoji",
"pkief.material-icon-theme",
"equinusocio.vsc-material-theme",
"ms-python.debugpy",
"mechatroner.rainbow-csv",
"be5invis.toml",
"redhat.vscode-yaml",
"charliermarsh.ruff",
"ms-python.vscode-pylance",
]
}
}