blob: eb63ec7152c3204a737c0b25e7dd4cb9007dd0c4 (
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 = "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" } },
}
|