blob: ab3f0fff133621cffae2a34ae6ea68d53984b489 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local go = require "mason-core.managers.go"
return Pkg.new {
name = "staticcheck",
desc = [[The advanced Go linter]],
homepage = "https://staticcheck.io/",
categories = { Pkg.Cat.Linter },
languages = { Pkg.Lang.Go },
install = go.packages { "honnef.co/go/tools/cmd/staticcheck", bin = { "staticcheck" } },
}
|