From 0b992ef288d9e3fdffb262d744f7830f09c84a32 Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Sun, 8 Feb 2026 15:12:59 -0500 Subject: [PATCH] fix: remove vim from std for older luacheck compatibility --- .luacheckrc | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 8701434..6a26429 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -1,20 +1,16 @@ --- Neovim globals and std -std = "lua51+vim" +-- luacheck config for Neovim +std = "lua51" --- Globals provided by Neovim -read_globals = { +globals = { "vim", } --- Ignore max line length warnings ignore = { - "631", -- max_line_length + "631", } --- Don't report unused self arguments in methods self = false --- Exclude third-party code exclude_files = { "lua/custom/plugins/lazy.lua", }