doc: disable some type warnings from new LuaLS release

This commit is contained in:
Steven Arcangeli 2024-09-30 22:10:36 -07:00
parent 1360be5fda
commit 581c729805
2 changed files with 3 additions and 0 deletions

View file

@ -197,6 +197,7 @@ M.perform_action = function(action)
elseif action.type == "change" then
-- Cache doesn't need to update
else
---@diagnostic disable-next-line: undefined-field
error(string.format("Bad action type: '%s'", action.type))
end
end