blob: 6598a991663d86cdcbf7687dfb16ec7b8dd0bf45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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.
]],
},
}
|