blob: 7cc835daabf30c8925b90c51eff85a929fdf383f (
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 = "flake8",
desc = [[flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code. ]],
homepage = "https://github.com/PyCQA/flake8",
languages = { Pkg.Lang.Python },
categories = { Pkg.Cat.Linter },
install = pip3.packages { "flake8", bin = { "flake8" } },
}
|