blob: f4fae381ffac114782dad5dd0f2285dfcfb30d0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local Pkg = require "mason-core.package"
local luarocks = require "mason-core.managers.luarocks"
return Pkg.new {
name = "luacheck",
desc = [[A tool for linting and static analysis of Lua code.]],
homepage = "https://github.com/mpeterv/luacheck",
languages = { Pkg.Lang.Lua },
categories = { Pkg.Cat.Linter },
install = luarocks.package("luacheck", {
bin = { "luacheck" },
}),
}
|