forked from operatorofhell/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc-settings.json
More file actions
27 lines (27 loc) · 826 Bytes
/
coc-settings.json
File metadata and controls
27 lines (27 loc) · 826 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
{
"languageserver": {
"puppet": {
"command": "ruby",
"args": ["/home/moritz/Projects/puppet-editor-services/puppet-languageserver","--stdio","--puppet-settings=--moduledir,/home/moritz/.puppetlabs/etc/code/modules/"],
"cwd": "/home/moritz/Projects/puppet-editor-services",
"filetypes": ["puppet"],
"rootPatterns": [".git/", "metadata.json"]
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
}
},
"diagnostic-languageserver.filetypes": {
"sh": "shellcheck",
"ruby": "rubocop"
},
"diagnostic.checkCurrentLine": true,
"codeLens.enable": true,
"solargraph.diagnostics": true,
"solargraph.autoformat": true,
"solargraph.formatting": true,
"solargraph.hover": true
}