aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/gospel/init.lua
blob: 9b740e82c9482ea5ff9278e8ffa80ea1a0a1be99 (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 = "gospel",
    desc = [[misspelled word linter for Go comments, string literals and embedded files]],
    homepage = "https://github.com/kortschak/gospel",
    categories = { Pkg.Cat.Linter },
    languages = { Pkg.Lang.Go },
    install = go.packages { "github.com/kortschak/gospel", bin = { "gospel" } },
}