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
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",
}