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