nvim-tree.lua/.luacheckrc
kiyan ea92e7bf7c refacto: set tree explorer in the global state
also remove the redraw method and use renderer.draw immediately
2022-02-07 22:07:08 +01:00

14 lines
209 B
Lua

-- vim: ft=lua tw=80
-- Don't report unused self arguments of methods.
self = false
ignore = {
"631", -- max_line_length
}
-- Global objects defined by the C code
globals = {
"vim",
"TreeExplorer"
}