aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/pyflakes/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/index/pyflakes/init.lua')
-rw-r--r--lua/mason-registry/index/pyflakes/init.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/mason-registry/index/pyflakes/init.lua b/lua/mason-registry/index/pyflakes/init.lua
deleted file mode 100644
index ba084f3e..00000000
--- a/lua/mason-registry/index/pyflakes/init.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-local Pkg = require "mason-core.package"
-local _ = require "mason-core.functional"
-local pip3 = require "mason-core.managers.pip3"
-
-return Pkg.new {
- name = "pyflakes",
- desc = _.dedent [[
- A simple program which checks Python source files for errors.
-
- Pyflakes analyzes programs and detects various errors. It works by parsing the source file, not importing it, so
- it is safe to use on modules with side effects. It’s also much faster.
-]],
- homepage = "https://pypi.org/project/pyflakes/",
- languages = { Pkg.Lang.Python },
- categories = { Pkg.Cat.Linter },
- install = pip3.packages { "pyflakes", bin = { "pyflakes" } },
-}