From 59959d75224e827453ad9387ad785fcf67ca45ca Mon Sep 17 00:00:00 2001 From: Aaron Pham Date: Tue, 3 Sep 2024 22:56:17 -0400 Subject: [PATCH] fix(lua): linter for config (#505) Signed-off-by: Aaron Pham --- lua/avante/config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/avante/config.lua b/lua/avante/config.lua index 3a30c3a..d7f6165 100644 --- a/lua/avante/config.lua +++ b/lua/avante/config.lua @@ -201,7 +201,7 @@ function M.setup(opts) }, } ) - if not M.options.silent_warning == nil then + if M.options.silent_warning == nil then -- set silent_warning to true if debug is false M.options.silent_warning = not M.options.debug end