nvim/.luacheckrc
Jeremie Fraeys f04aed8e96
Some checks are pending
Luacheck / luacheck (push) Waiting to run
StyLua / stylua (macos-latest) (push) Waiting to run
StyLua / stylua (ubuntu-latest) (push) Waiting to run
ci: add luacheck workflow and improve stylua; add luacheckrc config
2026-02-08 14:54:20 -05:00

20 lines
325 B
Lua

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