-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-clients-workspace.code-workspace
More file actions
73 lines (73 loc) · 2.01 KB
/
api-clients-workspace.code-workspace
File metadata and controls
73 lines (73 loc) · 2.01 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
{
"folders": [
{
"name": "Katana OpenAPI Client",
"path": "./katana-openapi-client"
},
{
"name": "StockTrim OpenAPI Client",
"path": "./stocktrim-openapi-client"
}
],
"settings": {
// Global workspace settings
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
".mypy_cache": true,
".ruff_cache": true,
"**/.pytest_cache": true,
"**/coverage.xml": false,
"**/.coverage": false
},
"python.analysis.autoImportCompletions": true,
"python.analysis.typeCheckingMode": "strict",
"search.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
".mypy_cache": true,
".ruff_cache": true,
"**/.pytest_cache": true,
"**/node_modules": true,
"**/coverage": true
},
"files.associations": {
"*.yaml": "yaml",
"*.yml": "yaml"
},
"yaml.validate": true,
"yaml.format.enable": true
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.mypy-type-checker",
"charliermarsh.ruff",
"ms-toolsai.jupyter",
"redhat.vscode-yaml",
"ms-python.debugpy",
"github.copilot",
"github.copilot-chat"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "All Projects: Check Quality",
"dependsOrder": "parallel",
"dependsOn": [
"katana: check",
"stocktrim: check"
],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}
}