-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.code-workspace
52 lines (52 loc) · 996 Bytes
/
workspace.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
{
"folders": [
{
"name": "API",
"path": "api"
},
{
"name": "Web",
"path": "web"
},
{
"name": "Mobile",
"path": "mobile"
},
{
"name": "Root",
"path": "./"
}
],
"extensions": {
"recommendations": [
"gruntfuggly.todo-tree",
"ms-azuretools.vscode-docker",
"golang.go",
"dart-code.flutter",
"dart-code.dart-code",
"google.arb-editor"
]
},
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"api": true,
"web": true,
"mobile": true
},
"editor.insertSpaces": true,
"[dockercompose]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker",
"editor.tabSize": 2
},
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker",
"editor.tabSize": 4
},
}
}