Skip to content

Commit dc2dcd2

Browse files
committed
feat: added health checks
1 parent 8531995 commit dc2dcd2

File tree

2 files changed

+61
-4
lines changed

2 files changed

+61
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323

2424
## ✅ TODO
2525

26-
- [ ] health checks: check merge conflicts async
27-
- [ ] unsupported props or props from other managers
28-
- [ ] other packages still in site?
29-
- [ ] other package manager artifacts still present? compiled etc
26+
- [x] health checks: check merge conflicts async
27+
- [x] unsupported props or props from other managers
28+
- [x] other packages still in site?
29+
- [x] other package manager artifacts still present? compiled etc
3030
- [ ] fix plugin details
3131
- [ ] show disabled plugins (strikethrough?)
3232
- [ ] log file

lua/lazy/health.lua

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
local Util = require("lazy.util")
2+
local Config = require("lazy.core.config")
3+
4+
local M = {}
5+
6+
function M.check()
7+
vim.health.report_start("lazy.nvim")
8+
9+
local existing = false
10+
Util.ls(vim.fn.stdpath("data") .. "/site/pack/", function(path)
11+
existing = true
12+
vim.health.report_warn("found existing packages at `" .. path .. "`")
13+
end)
14+
if not existing then
15+
vim.health.report_ok("no existing packages found by other package managers")
16+
end
17+
18+
local packer_compiled = vim.fn.stdpath("config") .. "/plugin/packer_compiled.lua"
19+
if vim.loop.fs_stat(packer_compiled) then
20+
vim.health.report_error("please remove the file `" .. packer_compiled .. "`")
21+
else
22+
vim.health.report_ok("packer_compiled.lua not found")
23+
end
24+
25+
local valid = {
26+
1,
27+
"name",
28+
"uri",
29+
"enabled",
30+
"lazy",
31+
"dev",
32+
"dependencies",
33+
"init",
34+
"config",
35+
"build",
36+
"branch",
37+
"tag",
38+
"commit",
39+
"version",
40+
"pin",
41+
"cmd",
42+
"event",
43+
"keys",
44+
"ft",
45+
"dir",
46+
"_",
47+
}
48+
for _, plugin in pairs(Config.plugins) do
49+
for key in pairs(plugin) do
50+
if not vim.tbl_contains(valid, key) then
51+
vim.health.report_warn("{" .. plugin.name .. "}: unknown key <" .. key .. ">")
52+
end
53+
end
54+
end
55+
end
56+
57+
return M

0 commit comments

Comments
 (0)