-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
45 lines (40 loc) · 1.38 KB
/
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
{
// https://github.com/Microsoft/vscode/issues/47299
"javascript.showUnused": false,
"typescript.showUnused": false,
"typescript.updateImportsOnFileMove.enable": true,
// https://github.com/neoclide/coc-tsserver/issues/265
// geterrForProject
// "typescript.tsserver.experimental.enableProjectDiagnostics": true,
// "diagnostic.messageTarget": "preview",
// "diagnostic.locationlistLevel": true,
"coc.preferences.floatActions": false,
"coc.preferences.promptInput": false,
// "coc.preferences.hoverTarget": "preview",
"suggest.detailField": "preview",
// don't automatically select the first entry when pum pops up
"suggest.noselect": true,
// "signature.target": "preview",
"coc.preferences.useQuickfixForLocations": true,
// "typescript.disableAutomaticTypeAcquisition": true,
"json.schemas": [
{
"name": "pm2",
"description": "pm2",
"url": "https://raw.githubusercontent.com/Unitech/pm2/master/lib/API/schema.json",
"fileMatch": ["pm2.json"]
}
],
"yaml.enable": true,
"yaml.validate": true,
"yaml.hover": true,
"yaml.completion": true,
"yaml.format.proseWrap": "always",
"yaml.format.printWidth": 80,
"yaml.schemaStore.enable": true,
"yaml.schemas": {
"https://json.schemastore.org/kustomization.json": "kustomization.json",
"kubernetes": ["*.k8s.yaml", "*.k8s.json"]
},
"yaml.trace.server": "verbose"
}