-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc-settings.json
More file actions
51 lines (51 loc) · 1.16 KB
/
coc-settings.json
File metadata and controls
51 lines (51 loc) · 1.16 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
{
"hover.floatConfig": {
"border": true
},
"coc.preferences.formatOnSaveFiletypes": [
"css",
"go",
"html",
"json",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"coc.preferences.currentFunctionSymbolAutoUpdate": true,
"coc.source.around.firstMatch": false,
"coc.source.buffer.firstMatch": false,
"go.goplsEnv": {
"GOFLAGS": "-tags=vnetdaemon"
},
"go.goplsPath": "~/go/bin/gopls",
"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",
"--output.json.path",
"stdout",
"--show-stats=false",
"--issues-exit-code=1"
]
}
}
},
"oxc.oxfmt.enable": true,
"javascript.format.enable": false,
"typescript.format.enable": false,
"prettier.enable": false
}