diff options
Diffstat (limited to 'lua/mason-registry/index/pyproject-flake8/init.lua')
| -rw-r--r-- | lua/mason-registry/index/pyproject-flake8/init.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/index/pyproject-flake8/init.lua b/lua/mason-registry/index/pyproject-flake8/init.lua new file mode 100644 index 00000000..9657942a --- /dev/null +++ b/lua/mason-registry/index/pyproject-flake8/init.lua @@ -0,0 +1,11 @@ +local Pkg = require "mason-core.package" +local pip3 = require "mason-core.managers.pip3" + +return Pkg.new { + name = "pyproject-flake8", + desc = "A monkey patching wrapper to connect flake8 with pyproject.toml configuration.", + homepage = "https://github.com/csachs/pyproject-flake8", + languages = { Pkg.Lang.Python }, + categories = { Pkg.Cat.Linter }, + install = pip3.packages { "pyproject-flake8", bin = { "pflake8" } }, +} |
