Use new linter (#294)

* Use new linter

* Luacheck and Sumneko Lua fixes

* Bump CI action versions

* Fix excludes for ldoc
This commit is contained in:
Cooldude2606
2024-05-29 15:39:37 +01:00
committed by GitHub
parent 4fa410e872
commit 8638504550
27 changed files with 96 additions and 92 deletions

View File

@@ -161,7 +161,7 @@ function table.extract_keys(tbl, ...)
for _, key in pairs({...}) do
table.insert(values, tbl[key])
end
return unpack(values)
return table.unpack(values)
end
--- Adds an element into a specific index position while shuffling the rest down