aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/gitlint/init.lua
blob: e8f85a6bcf782d93eeb258376b57140faaf666a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
local Pkg = require "mason-core.package"
local pip3 = require "mason-core.managers.pip3"

return Pkg.new {
    name = "gitlint",
    desc = [[Gitlint is a git commit message linter written in python: it checks your commit messages for style.]],
    homepage = "https://jorisroovers.com/gitlint/",
    languages = { Pkg.Lang.GitCommit },
    categories = { Pkg.Cat.Linter },
    install = pip3.packages { "gitlint", bin = { "gitlint" } },
}