nvim-tree.lua/.luacheckrc
Alexander Courtis 077af9f990
chore: enable incomplete-signature-doc, format nvt-min.lua, assorted formatting tidies (#2967)
* chore: luacheckrc uses table

* chore: format nvt-min.lua

* chore: complete lua doc

* chore: complete lua doc

* chore: complete lua doc

* chore: complete lua doc

* chore: complete lua doc

* chore: enable incomplete-signature-doc

* chore: enable incomplete-signature-doc

* chore: complete lua doc

* chore: complete lua doc
2024-10-25 14:25:30 +11:00

16 lines
200 B
Lua

local M = {}
-- Don't report unused self arguments of methods.
M.self = false
M.ignore = {
"631", -- max_line_length
}
-- Global objects defined by the C code
M.globals = {
"vim",
}
return M