* 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
16 lines
200 B
Lua
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
|