-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.code-workspace
48 lines (48 loc) · 1.01 KB
/
.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
{
"folders": [
{
"name": ".",
"path": "."
},
{
"name": "backend",
"path": "apps/backend"
},
{
"name": "ms-bridge",
"path": "apps/ms-bridge"
},
{
"name": "frontend",
"path": "apps/frontend"
}
],
"settings": {
"files.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.vscode": false,
},
"markdownlint.config": {
"MD033": false,
"MD051": false,
"MD024": false
},
},
"extensions": {
"recommendations": [
"mhutchie.git-graph",
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"redhat.vscode-yaml",
"oderwat.indent-rainbow",
"hangxingliu.vscode-nginx-conf-hint",
"mikestead.dotenv",
"pkief.material-icon-theme",
"streetsidesoftware.code-spell-checker-medical-terms",
"streetsidesoftware.code-spell-checker-scientific-terms",
"ms-azuretools.vscode-docker",
"usernamehw.errorlens",
],
},
}