blob: be55e2f518ab0597964e793ca59e769ec7bd8ccc (
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 = "solhint",
desc = [[Solhint is a linting utility for Solidity code]],
homepage = "https://protofire.github.io/solhint/",
languages = { Pkg.Lang.Solidity },
categories = { Pkg.Cat.Linter },
install = npm.packages { "solhint", bin = { "solhint" } },
}
|