-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharg-env.code-workspace
45 lines (45 loc) · 1.18 KB
/
arg-env.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
// "source.fixAll": true
},
"editor.codeLens": false,
"editor.insertSpaces": true,
"editor.renderIndentGuides": true,
"editor.tabSize": 2,
"editor.useTabStops": true,
"json.format.enable": false,
"json.schemaDownload.enable": true,
"typescript.format.enable": true,
"typescript.format.semicolons": "remove",
"typescript.implementationsCodeLens.enabled": true,
"typescript.preferences.quoteStyle": "double",
"typescript.tsdk": "./node_modules/typescript/lib",
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"[shellscript]": {
"files.eol": "auto",
"editor.codeActionsOnSave": {
"source.fixAll": true
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll": true
}
},
"yaml.schemas": {
"https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json": [
"**/*docker-compose*yml"
]
}
}
}