diff options
Diffstat (limited to 'lua/mason-registry/index/haml-lint/init.lua')
| -rw-r--r-- | lua/mason-registry/index/haml-lint/init.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/mason-registry/index/haml-lint/init.lua b/lua/mason-registry/index/haml-lint/init.lua new file mode 100644 index 00000000..d6edabdd --- /dev/null +++ b/lua/mason-registry/index/haml-lint/init.lua @@ -0,0 +1,15 @@ +local Pkg = require "mason-core.package" +local gem = require "mason-core.managers.gem" +local _ = require "mason-core.functional" + +return Pkg.new { + name = "haml-lint", + desc = _.dedent [[ + haml-lint is a tool to help keep your HAML files clean and readable. In addition to HAML-specific style and lint + checks, it integrates with RuboCop to bring its powerful static analysis tools to your HAML documents. + ]], + homepage = "https://github.com/sds/haml-lint", + languages = { Pkg.Lang.HAML }, + categories = { Pkg.Cat.Linter }, + install = gem.packages { "haml_lint", bin = { "haml-lint" } }, +} |
