blob: 70608bf6e8c971d234cbf12e5132bb91c90d0a3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'standardrb', '--lsp' },
filetypes = { 'ruby' },
root_dir = util.root_pattern('Gemfile', '.git'),
},
docs = {
description = [[
https://github.com/testdouble/standard
Ruby Style Guide, with linter & automatic code fixer.
]],
default_config = {
root_dir = [[root_pattern("Gemfile", ".git")]],
},
},
}
|