nvim/.luacheckrc
Jeremie Fraeys 0b992ef288
Some checks failed
Luacheck / luacheck (push) Failing after 11s
StyLua / stylua (push) Failing after 2s
fix: remove vim from std for older luacheck compatibility
2026-02-08 15:12:59 -05:00

16 lines
159 B
Lua

-- luacheck config for Neovim
std = "lua51"
globals = {
"vim",
}
ignore = {
"631",
}
self = false
exclude_files = {
"lua/custom/plugins/lazy.lua",
}