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

return Pkg.new {
    name = "stylelint-lsp",
    desc = [[A stylelint Language Server]],
    homepage = "https://github.com/bmatcuk/stylelint-lsp",
    languages = { Pkg.Lang.Stylelint },
    categories = { Pkg.Cat.LSP },
    install = npm.packages { "stylelint-lsp", bin = { "stylelint-lsp" } },
}