diff options
Diffstat (limited to 'lua/core/linter.lua')
-rw-r--r-- | lua/core/linter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/linter.lua b/lua/core/linter.lua index 9c6649a8..676b0cf7 100644 --- a/lua/core/linter.lua +++ b/lua/core/linter.lua @@ -19,7 +19,7 @@ M.setup = function() end end -local status_ok, linter = pcall(require, "lint") +local status_ok, _ = pcall(require, "lint") if not status_ok then return end |