blob: 00028b3596a5b2739dd264e408ae0766e5f93996 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local npm = require "mason-core.managers.npm"
return Pkg.new {
name = "elm-format",
desc = [[elm-format formats Elm source code according to a standard set of rules based on the official Elm Style Guide]],
homepage = "https://github.com/avh4/elm-format",
languages = { Pkg.Lang.Elm },
categories = { Pkg.Cat.Formatter },
install = npm.packages { "elm-format", bin = { "elm-format" } },
}
|