-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
45 lines (45 loc) · 1015 Bytes
/
coc-settings.json
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
{
"hover.floatConfig": {
"border": true
},
"coc.preferences.formatOnSaveFiletypes": [
"css",
"go",
"html",
"json",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"coc.source.around.firstMatch": false,
"coc.source.buffer.firstMatch": false,
"eslint.autoFixOnSave": true,
"eslint.experimental.useFlatConfig": true,
"go.goplsEnv": {
"GOFLAGS": "-tags=vnetdaemon"
},
"prettier.requireConfig": true,
"suggest.noselect": true,
"tsserver.useLocalTsdk": true,
"tsserver.tsdk": "./node_modules/typescript/lib",
"languageserver": {
"golangci-lint-languageserver": {
"command": "golangci-lint-langserver",
"filetypes": ["go"],
"initializationOptions": {
"command": [
"golangci-lint",
"run",
"-c",
".golangci.yml",
"--enable",
"errcheck",
"--out-format",
"json",
"--issues-exit-code=1"
]
}
}
}
}