fix: remove vim from std for older luacheck compatibility
Some checks failed
Luacheck / luacheck (push) Failing after 11s
StyLua / stylua (push) Failing after 2s

This commit is contained in:
Jeremie Fraeys 2026-02-08 15:12:59 -05:00
parent ba42701d43
commit 0b992ef288
No known key found for this signature in database

View file

@ -1,20 +1,16 @@
-- Neovim globals and std -- luacheck config for Neovim
std = "lua51+vim" std = "lua51"
-- Globals provided by Neovim globals = {
read_globals = {
"vim", "vim",
} }
-- Ignore max line length warnings
ignore = { ignore = {
"631", -- max_line_length "631",
} }
-- Don't report unused self arguments in methods
self = false self = false
-- Exclude third-party code
exclude_files = { exclude_files = {
"lua/custom/plugins/lazy.lua", "lua/custom/plugins/lazy.lua",
} }