fix(health): don't show warning on module=false

This commit is contained in:
Folke Lemaitre 2022-12-21 16:07:49 +01:00
parent b68f94b95a
commit c228908ffc
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 5 additions and 1 deletions

View file

@ -37,6 +37,7 @@ function M.check()
"tag",
"commit",
"version",
"module",
"pin",
"cmd",
"event",
@ -48,7 +49,9 @@ function M.check()
for _, plugin in pairs(Config.plugins) do
for key in pairs(plugin) do
if not vim.tbl_contains(valid, key) then
vim.health.report_warn("{" .. plugin.name .. "}: unknown key <" .. key .. ">")
if key ~= "module" or type(plugin.module) ~= "boolean" then
vim.health.report_warn("{" .. plugin.name .. "}: unknown key <" .. key .. ">")
end
end
end
end