Files
AstroNvim/.luacheckrc
T
Micah Halter c60609e10a Clean up luacheckrc
Signed-off-by: Micah Halter <micah@balena.io>
2022-05-05 13:13:49 -04:00

19 lines
324 B
Lua

-- Global objects
globals = {
"PACKER_BOOTSTRAP",
"vim",
"C",
"packer_plugins",
}
-- Rerun tests only if their modification time changed
cache = true
-- Don't report unused self arguments of methods
self = false
ignore = {
"631", -- max_line_length
"212/_.*", -- unused argument, for vars with "_" prefix
}