diff options
Diffstat (limited to 'lua/mason-registry/elm-format/init.lua')
| -rw-r--r-- | lua/mason-registry/elm-format/init.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/elm-format/init.lua b/lua/mason-registry/elm-format/init.lua new file mode 100644 index 00000000..e162ffdc --- /dev/null +++ b/lua/mason-registry/elm-format/init.lua @@ -0,0 +1,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" } }, +} |
