From 0b7596f609c4f2620240c6ba8218e065610255e6 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 14 Mar 2023 18:31:43 +0100 Subject: [PATCH] style(cache): disable duplicate warnings --- lua/lazy/core/cache.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/lazy/core/cache.lua b/lua/lazy/core/cache.lua index 7a8c3c0..7ca5a35 100644 --- a/lua/lazy/core/cache.lua +++ b/lua/lazy/core/cache.lua @@ -1,3 +1,7 @@ +---@diagnostic disable: duplicate-doc-alias +---@diagnostic disable: duplicate-doc-field +---@diagnostic disable: duplicate-set-field + -- interop with the native Neovim cache if type(package.loaded["vim.cache"]) == "table" then return package.loaded["vim.cache"]