blob: c51267933abef1ddd5e09251f21b3530b69cdca2 (
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 = "textlint",
desc = [[The pluggable natural language linter for text and markdown.]],
homepage = "https://textlint.github.io",
languages = { Pkg.Lang.Text, Pkg.Lang.Markdown },
categories = { Pkg.Cat.Linter },
install = npm.packages { "textlint", bin = { "textlint" } },
}
|