-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
27 lines (27 loc) · 945 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
{
"diagnostic.displayByAle": true,
"deno.inlayHints.functionLikeReturnTypes.enabled": true,
"diagnostic.checkCurrentLine": true,
"inlayHint.enable": true,
"inlayHint.display": false,
"deno.enable": true,
"deno.inlayHints.variableTypes.enabled": true,
"deno.inlayHints.enumMemberValues.enabled": true,
"deno.inlayHints.parameterNames.enabled": "all",
"deno.inlayHints.parameterTypes.enabled": true,
"deno.inlayHints.propertyDeclarationTypes.enabled": true,
"deno.inlayHints.variableTypes.suppressWhenTypeMatchesName": true,
"deno.lint": true,
"languageserver": {
"golang": {
"command": "gopls",
"rootPatterns": ["go.work", "go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"],
"initializationOptions": {
"usePlaceholders": true
}
}
},
"git.enableGutters": true,
"coc.preferences.extensionUpdateCheck": "daily"
}