-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhorahora.code-workspace.example
95 lines (95 loc) · 1.82 KB
/
horahora.code-workspace.example
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
{
"folders": [
{
"name": "horahora",
"path": "."
},
{
"name": "front_api",
"path": "front_api"
},
{
"name": "backup_service",
"path": "backup_service"
},
{
"name": "scheduler",
"path": "scheduler"
},
{
"name": "stomp_proxy",
"path": "stomp_proxy"
},
{
"name": "tests",
"path": "tests"
},
{
"name": "user_service",
"path": "user_service"
},
{
"name": "video_service",
"path": "video_service"
},
{
"name": "webapp",
"path": "webapp"
},
{
"name": "cli",
"path": "cli"
},
{
"name": "schema",
"path": "schema"
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"front_api": true,
"backup_service": true,
"scheduler": true,
"stomp_proxy": true,
"tests": true,
"user_service": true,
"video_service": true,
"webapp": true,
"schema": true,
"cli": true
},
"files.associations": {
// syntax highlight for example env files
"**/.env*": "dotenv",
// syntax highlight for example workspace files
"**/*.code-workspace*": "jsonc"
},
// remove text 3 options if you've set them up in global editor settings
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true
},
"extensions": {
"recommendations": [
// `.env` syntax highlight
"mikestead.dotenv",
// docker-related features plus highlight in dockerfiles and compose configs
"ms-azuretools.vscode-docker",
// lots of QoL git features
"eamodio.gitlens",
// nginx config highlight
"ahmadalli.vscode-nginx-conf",
// `.sql` formatter
"bradymholt.pgformatter",
// `.proto3` syntax highlight
"zxh404.vscode-proto3"
]
}
}