mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-10 12:35:47 +08:00
18 lines
355 B
Lua
18 lines
355 B
Lua
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'rubocop', '--lsp' },
|
|
filetypes = { 'ruby' },
|
|
root_dir = util.root_pattern('Gemfile', '.git'),
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/rubocop/rubocop
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern("Gemfile", ".git")]],
|
|
},
|
|
},
|
|
}
|