aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/xmlformatter/init.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-04-11 03:12:52 +0200
committerGitHub <noreply@github.com>2023-04-11 03:12:52 +0200
commite5bb23fa9ee2a2047368b05f262de6b2152d7a27 (patch)
tree1265e826e89e92a493e37c85385a77fcf6089b2c /lua/mason-registry/index/xmlformatter/init.lua
parentfeat(registry): pcall require Lua registry packages (#1200) (diff)
downloadmason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar
mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.gz
mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.bz2
mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.lz
mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.xz
mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.zst
mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.zip
chore: migrate packages (#1203)
Diffstat (limited to 'lua/mason-registry/index/xmlformatter/init.lua')
-rw-r--r--lua/mason-registry/index/xmlformatter/init.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/mason-registry/index/xmlformatter/init.lua b/lua/mason-registry/index/xmlformatter/init.lua
deleted file mode 100644
index 34fb7268..00000000
--- a/lua/mason-registry/index/xmlformatter/init.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-local Pkg = require "mason-core.package"
-local _ = require "mason-core.functional"
-local pip3 = require "mason-core.managers.pip3"
-
-return Pkg.new {
- name = "xmlformatter",
- desc = _.dedent [[
- xmlformatter is an Open Source Python package that provides formatting of XML documents. xmlformatter differs
- from others formatters by handling whitespaces by a distinct set of formatting rules - formatting element
- content by an object style and mixed content by a text style. You may find xmlformatter useful for corrections
- and presentations.
- ]],
- homepage = "https://github.com/pamoller/xmlformatter",
- languages = { Pkg.Lang.XML },
- categories = { Pkg.Cat.Formatter },
- install = pip3.packages { "xmlformatter", bin = { "xmlformat" } },
-}