aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/shopify-theme-check/init.lua
blob: bba774f87f59d5694488c6504a98300c86a075d0 (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 = "shopify-theme-check",
    desc = [[The Ultimate Shopify Theme Linter]],
    homepage = "https://github.com/Shopify/theme-check",
    languages = { Pkg.Lang.Liquid },
    categories = { Pkg.Cat.LSP, Pkg.Cat.Linter },
    install = gem.packages { "theme-check", bin = { "theme-check-language-server" } },
}