mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
13 lines
256 B
Lua
13 lines
256 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/testdouble/standard
|
|
---
|
|
--- Ruby Style Guide, with linter & automatic code fixer.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'standardrb', '--lsp' },
|
|
filetypes = { 'ruby' },
|
|
root_markers = { 'Gemfile', '.git' },
|
|
}
|