blob: 7a15e5d47a3c6ef810c630fc986a445afed96676 (
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 = "pydocstyle",
desc = "pydocstyle is a static analysis tool for checking compliance with Python docstring conventions",
homepage = "https://www.pydocstyle.org/",
languages = { Pkg.Lang.Python },
categories = { Pkg.Cat.Linter },
install = pip3.packages { "pydocstyle[toml]", bin = { "pydocstyle" } },
}
|