blob: e50b3485193d5a1b957655a95e1c8ca38bd6c7eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local cargo = require "mason-core.managers.cargo"
return Pkg.new {
name = "shellharden",
desc = [[The corrective bash syntax highlighter]],
homepage = "https://github.com/anordal/shellharden",
languages = { Pkg.Lang.Bash },
categories = { Pkg.Cat.Formatter, Pkg.Cat.Linter },
install = cargo.crate { "shellharden", bin = { "shellharden" } },
}
|