loggingmanager,modulemanager,moduleapi: Ignore warning about accessing _G.unpack...
[prosody.git] / core / moduleapi.lua
index 9a0c5223b466af0f45fd30f535aa6c5aed66048c..402c79275fe0456f2004c2b7aece035329d21dcc 100644 (file)
@@ -20,7 +20,7 @@ local st = require "util.stanza";
 local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat;
 local error, setmetatable, type = error, setmetatable, type;
 local ipairs, pairs, select = ipairs, pairs, select;
-local unpack = table.unpack or unpack;
+local unpack = table.unpack or unpack; --luacheck: ignore 113
 local tonumber, tostring = tonumber, tostring;
 local require = require;