-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdb2.code-workspace
More file actions
48 lines (48 loc) · 965 Bytes
/
db2.code-workspace
File metadata and controls
48 lines (48 loc) · 965 Bytes
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": [
{
"path": "golang\\godb"
},
{
"path": "golang\\intro\\d.di"
},
{
"path": "golang\\intro\\f.concurrency"
}
],
"settings": {
"go.lintOnSave": "package",
"go.vetOnSave": "package",
"go.useLanguageServer": true,
"go.lintTool": "golangci-lint",
"go.lintFlags": [
"--print-issued-lines=false",
"--no-config",
"--disable-all",
"--enable=govet",
"--enable=stylecheck",
"--enable=staticcheck",
"--enable=dupl",
"--enable=unconvert",
"--enable=ineffassign",
"--enable=goconst",
"--enable=gosec",
"--enable=unparam",
"--enable=interfacer",
"--enable=gocyclo",
"--enable=errcheck",
"--enable=deadcode",
"--enable=varcheck",
"--enable=gosimple",
"--enable=structcheck",
"--enable=typecheck",
"--enable=unused",
"--enable=misspell",
"--enable=golint"
],
"files.eol": "\n"
},
"extensions": {
"recommendations": ["golang.go", "zxh404.vscode-proto3"]
}
}