aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/cmakelint/init.lua
blob: b351ce4b85b12fa6868564601332b3d4a8ce33cc (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 = "cmakelint",
    desc = [[cmakelint parses CMake files and reports style issues]],
    homepage = "https://github.com/cmake-lint/cmake-lint",
    languages = { Pkg.Lang.Python },
    categories = { Pkg.Cat.Linter },
    install = pip3.packages { "cmakelint", bin = { "cmakelint" } },
}