-
Notifications
You must be signed in to change notification settings - Fork 1
/
go-reassign.code-workspace
48 lines (48 loc) · 1.21 KB
/
go-reassign.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": "."
}
],
"extensions": {
"recommendations": ["esbenp.prettier-vscode", "foxundermoon.shell-format"]
},
"settings": {
"editor.tabSize": 2,
"[dockerfile]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[dotenv]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[ignore]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[github-actions-workflow]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"go.lintFlags": ["--fix"],
"go.lintOnSave": "package",
"go.lintTool": "golangci-lint",
"gopls": {
"formatting.gofumpt": true
},
"[markdown]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[shellscript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[yaml]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}