blob: 0c939b0411d556a3b46b11e5c358c99510a87fc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local pip3 = require "mason-core.managers.pip3"
return Pkg.new {
name = "rstcheck",
desc = "Checks syntax of reStructuredText and code blocks nested within it.",
homepage = "https://rstcheck.readthedocs.io/",
languages = { Pkg.Lang.Python },
categories = { Pkg.Cat.Linter },
install = pip3.packages { "rstcheck", bin = { "rstcheck" } },
}
|