aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/ocamlformat/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/index/ocamlformat/init.lua')
-rw-r--r--lua/mason-registry/index/ocamlformat/init.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/lua/mason-registry/index/ocamlformat/init.lua b/lua/mason-registry/index/ocamlformat/init.lua
deleted file mode 100644
index a92b4e23..00000000
--- a/lua/mason-registry/index/ocamlformat/init.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-local Pkg = require "mason-core.package"
-local _ = require "mason-core.functional"
-local opam = require "mason-core.managers.opam"
-
-return Pkg.new {
- name = "ocamlformat",
- desc = _.dedent [[
- ocamlformat is a tool for formatting OCaml code. It automatically adjusts the layout of your code to follow the
- recommended style guidelines, making it easier to read and understand.
- ]],
- homepage = "https://github.com/ocaml-ppx/ocamlformat",
- languages = { Pkg.Lang.OCaml },
- categories = { Pkg.Cat.Formatter },
- install = opam.packages { "ocamlformat", bin = { "ocamlformat" } },
-}