diff options
Diffstat (limited to 'lua/mason-registry/index/shopify-theme-check/init.lua')
| -rw-r--r-- | lua/mason-registry/index/shopify-theme-check/init.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/index/shopify-theme-check/init.lua b/lua/mason-registry/index/shopify-theme-check/init.lua new file mode 100644 index 00000000..bba774f8 --- /dev/null +++ b/lua/mason-registry/index/shopify-theme-check/init.lua @@ -0,0 +1,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" } }, +} |
