aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/misspell/init.lua
blob: d9ae6f13513c4b92f7ca48b24c1ce540ca04c97d (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 = "misspell",
    desc = [[Correct commonly misspelled English words in source files]],
    homepage = "https://github.com/client9/misspell",
    languages = {},
    categories = { Pkg.Cat.Linter },
    install = go.packages { "github.com/client9/misspell/cmd/misspell", bin = { "misspell" } },
}