aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/rubocop/init.lua
blob: 8b50275638b251482d5113ff2054d05ca0fc3155 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
local Pkg = require "mason-core.package"
local gem = require "mason-core.managers.gem"

return Pkg.new {
    name = "rubocop",
    desc = [[The Ruby Linter/Formatter that Serves and Protects]],
    homepage = "https://rubocop.org",
    languages = { Pkg.Lang.Ruby },
    categories = { Pkg.Cat.Formatter, Pkg.Cat.Linter },
    install = gem.packages { "rubocop", bin = { "rubocop" } },
}