aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/rubocop.lua
blob: e24e6161a7901eb8190125f7df580b8941608ca9 (plain)
1
2
3
4
5
6
7
8
9
10
---@brief
---
--- https://github.com/rubocop/rubocop

---@type vim.lsp.Config
return {
  cmd = { 'rubocop', '--lsp' },
  filetypes = { 'ruby' },
  root_markers = { 'Gemfile', '.git' },
}