-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfire.code-workspace
More file actions
57 lines (57 loc) · 1.59 KB
/
fire.code-workspace
File metadata and controls
57 lines (57 loc) · 1.59 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.defaultProfile.linux": "bash",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/.hg/store/**": true,
"**/vendor/**": true,
"**/*.exe": true,
"**/*.db": true,
"**/logs/**": true
},
"go.testOnSave": true,
"go.coverOnTestPackage": true,
"editor.rulers": [100],
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"editor.quickSuggestions": {
"strings": true
},
"go.lintOnSave": "workspace",
"go.vetOnSave": "workspace",
"go.buildOnSave": "off",
"go.testTimeout": "60s",
"go.testEnvFile": "",
"go.testFlags": ["-v", "-race"],
"go.generateTestsFlags": ["-v"],
"testing.automaticallyOpenPeekView": "failureInVisibleDocument"
},
"launch": {
"version": "0.2.0",
"configurations": [],
"compounds": [
{
"name": "Debug CLI + GUI",
"configurations": ["Debug CLI", "Debug GUI"],
"stopAll": true
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": []
},
"extensions": {
"recommendations": []
}
}