mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
lint: Remove use of the 143 error code
Does not appear to be invoked by anything
This commit is contained in:
parent
2b289f34f9
commit
5a608450d5
4 changed files with 4 additions and 5 deletions
|
@ -22,8 +22,8 @@ local t_concat = table.concat;
|
||||||
local s_byte = string.byte;
|
local s_byte = string.byte;
|
||||||
local s_char= string.char;
|
local s_char= string.char;
|
||||||
local s_sub = string.sub;
|
local s_sub = string.sub;
|
||||||
local s_pack = string.pack; -- luacheck: ignore 143
|
local s_pack = string.pack;
|
||||||
local s_unpack = string.unpack; -- luacheck: ignore 143
|
local s_unpack = string.unpack;
|
||||||
|
|
||||||
if not s_pack and softreq"struct" then
|
if not s_pack and softreq"struct" then
|
||||||
s_pack = softreq"struct".pack;
|
s_pack = softreq"struct".pack;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local unpack = table.unpack or unpack; --luacheck: ignore 113 143
|
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||||
local t_insert = table.insert;
|
local t_insert = table.insert;
|
||||||
function _G.import(module, ...)
|
function _G.import(module, ...)
|
||||||
local m = package.loaded[module] or require(module);
|
local m = package.loaded[module] or require(module);
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
local select = select;
|
local select = select;
|
||||||
local t_insert = table.insert;
|
local t_insert = table.insert;
|
||||||
local pairs, next, type = pairs, next, type;
|
local pairs, next, type = pairs, next, type;
|
||||||
local unpack = table.unpack or unpack; --luacheck: ignore 113 143
|
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||||
|
|
||||||
local _ENV = nil;
|
local _ENV = nil;
|
||||||
-- luacheck: std none
|
-- luacheck: std none
|
||||||
|
|
|
@ -20,7 +20,6 @@ local pcall = pcall;
|
||||||
local envload = require"util.envload".envload;
|
local envload = require"util.envload".envload;
|
||||||
|
|
||||||
local pos_inf, neg_inf = math.huge, -math.huge;
|
local pos_inf, neg_inf = math.huge, -math.huge;
|
||||||
-- luacheck: ignore 143/math
|
|
||||||
local m_type = math.type or function (n)
|
local m_type = math.type or function (n)
|
||||||
return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
|
return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue