blob: f4e4c8881b1f205ec526b5cf547032f12361b9cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local Pkg = require "mason-core.package"
local luarocks = require "mason-core.managers.luarocks"
return Pkg.new {
name = "luaformatter",
desc = [[Code formatter for Lua]],
homepage = "https://github.com/Koihik/LuaFormatter",
languages = { Pkg.Lang.Lua },
categories = { Pkg.Cat.Formatter },
install = luarocks.package("luaformatter", {
server = "https://luarocks.org/dev",
bin = { "lua-format" },
}),
}
|