diff options
| author | William Boman <william@redwill.se> | 2023-04-11 03:12:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-11 03:12:52 +0200 |
| commit | e5bb23fa9ee2a2047368b05f262de6b2152d7a27 (patch) | |
| tree | 1265e826e89e92a493e37c85385a77fcf6089b2c /lua/mason-registry/index/vulture/init.lua | |
| parent | feat(registry): pcall require Lua registry packages (#1200) (diff) | |
| download | mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.gz mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.bz2 mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.lz mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.xz mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.tar.zst mason-e5bb23fa9ee2a2047368b05f262de6b2152d7a27.zip | |
chore: migrate packages (#1203)
Diffstat (limited to 'lua/mason-registry/index/vulture/init.lua')
| -rw-r--r-- | lua/mason-registry/index/vulture/init.lua | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lua/mason-registry/index/vulture/init.lua b/lua/mason-registry/index/vulture/init.lua deleted file mode 100644 index f19ed128..00000000 --- a/lua/mason-registry/index/vulture/init.lua +++ /dev/null @@ -1,19 +0,0 @@ -local Pkg = require "mason-core.package" -local _ = require "mason-core.functional" -local pip3 = require "mason-core.managers.pip3" - -return Pkg.new { - name = "vulture", - desc = _.dedent [[ - Vulture finds unused code in Python programs. This is useful for cleaning up and finding errors in large code - bases. If you run Vulture on both your library and test suite you can find untested code. - - Due to Python's dynamic nature, static code analyzers like Vulture are likely to miss some dead code. Also, code - that is only called implicitly may be reported as unused. Nonetheless, Vulture can be a very helpful tool for - higher code quality. - ]], - homepage = "https://github.com/jendrikseipp/vulture", - languages = { Pkg.Lang.Python }, - categories = { Pkg.Cat.Linter }, - install = pip3.packages { "vulture", bin = { "vulture" } }, -} |
