File tree 2 files changed +61
-4
lines changed
2 files changed +61
-4
lines changed Original file line number Diff line number Diff line change 23
23
24
24
## ✅ TODO
25
25
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
30
30
- [ ] fix plugin details
31
31
- [ ] show disabled plugins (strikethrough?)
32
32
- [ ] log file
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments