aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/vint/init.lua
blob: 694a81aa36d260ea315278efaab60c418b95d04e (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 = "vint",
    desc = [[Fast and Highly Extensible Vim script Language Lint implemented in Python.]],
    homepage = "https://github.com/Vimjas/vint",
    languages = { Pkg.Lang.VimScript },
    categories = { Pkg.Cat.Linter },
    install = pip3.packages { "vim-vint", bin = { "vint" } },
}