aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/markdownlint/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/index/markdownlint/init.lua')
-rw-r--r--lua/mason-registry/index/markdownlint/init.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/index/markdownlint/init.lua b/lua/mason-registry/index/markdownlint/init.lua
new file mode 100644
index 00000000..eb63ec71
--- /dev/null
+++ b/lua/mason-registry/index/markdownlint/init.lua
@@ -0,0 +1,11 @@
+local Pkg = require "mason-core.package"
+local npm = require "mason-core.managers.npm"
+
+return Pkg.new {
+ name = "markdownlint",
+ desc = [[A Node.js style checker and lint tool for Markdown/CommonMark files]],
+ homepage = "https://github.com/igorshubovych/markdownlint-cli",
+ languages = { Pkg.Lang.Markdown },
+ categories = { Pkg.Cat.Linter, Pkg.Cat.Formatter },
+ install = npm.packages { "markdownlint-cli", bin = { "markdownlint" } },
+}