blob: 358a124b5e1f09a8d0f21030f79998f76d2c02e1 (
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 = "erb-lint",
desc = [[erb-lint is a tool to help lint your ERB or HTML files using the included linters or by writing your own]],
homepage = "https://github.com/Shopify/erb-lint",
languages = { Pkg.Lang.HTML, Pkg.Lang.Ruby },
categories = { Pkg.Cat.Linter },
install = gem.packages { "erb_lint", bin = { "erblint" } },
}
|