fix(lua): properly configure luacheck and remove local vim = ... lines (#20551)

This commit is contained in:
Folke Lemaitre
2022-10-09 12:40:56 +02:00
committed by GitHub
parent edc8a1f046
commit 8c2226fc30
10 changed files with 3 additions and 14 deletions

View File

@@ -6,7 +6,7 @@
-- or the test suite. (Eventually the test suite will be run in a worker process,
-- so this wouldn't be a separate case to consider)
local vim = vim or {}
vim = vim or {}
--- Returns a deep copy of the given object. Non-table objects are copied as
--- in a typical Lua assignment, whereas table objects are copied recursively.