-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatbot-prototype.code-workspace
73 lines (72 loc) · 1.86 KB
/
chatbot-prototype.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
{
"folders": [
{
"name": "Root",
"path": "./"
},
{
"name": "Chatbot UI",
"path": "./chatbot-ui"
},
{
"name": "Response Automater",
"path": "./response_automater"
},
{
"name": "Response Automater Tests",
"path": "./response_automater_tests"
},
{
"name": "Data Ingestion API",
"path": "./data_ingestion"
},
{
"name": "Data Ingestion API Tests",
"path": "./data_ingestion_tests"
}
],
"settings": {
"window.title": "Support bot",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnSaveMode": "modificationsIfAvailable",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"search.exclude": {
// Avoid polluting search results with lockfile content
"Pipfile.lock": true,
"pnpm-lock.yaml": true
},
// Ensure VSCode uses pnpm instead of npm
"npm.packageManager": "pnpm",
"jest.autoRun": "off",
"jest.disabledWorkspaceFolders": [
"Root",
"Response Automater",
"Response Automater Tests",
"Data Ingestion API",
"Data Ingestion API Tests"
],
"python.analysis.autoImportCompletions": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.inlayHints.callArgumentNames": "partial"
},
"extensions": {
"recommendations": [
"ms-python.python",
"orta.vscode-jest",
"esbenp.prettier-vscode",
"ms-python.black-formatter",
"ms-azuretools.vscode-docker",
"ms-azure-devops.azure-pipelines",
"ms-azuretools.azure-dev",
"ms-azuretools.vscode-bicep"
]
}
}