diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-08 17:10:51 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-08 17:10:51 +0100 |
commit | 5a608450d505944cbac268f28e48751c8fa3ee10 (patch) | |
tree | d5b43fb99c2898721ab605e16478d773e7eba5ba /util | |
parent | 2b289f34f929a69424a22bb0de3b668a58ba80cd (diff) | |
download | prosody-5a608450d505944cbac268f28e48751c8fa3ee10.tar.gz prosody-5a608450d505944cbac268f28e48751c8fa3ee10.zip |
lint: Remove use of the 143 error code
Does not appear to be invoked by anything
Diffstat (limited to 'util')
-rw-r--r-- | util/import.lua | 2 | ||||
-rw-r--r-- | util/multitable.lua | 2 | ||||
-rw-r--r-- | util/serialization.lua | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/util/import.lua b/util/import.lua index 8ecfe43c..1007bc0a 100644 --- a/util/import.lua +++ b/util/import.lua @@ -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; function _G.import(module, ...) local m = package.loaded[module] or require(module); diff --git a/util/multitable.lua b/util/multitable.lua index 8d32ed8a..4f2cd972 100644 --- a/util/multitable.lua +++ b/util/multitable.lua @@ -9,7 +9,7 @@ local select = select; local t_insert = table.insert; 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; -- luacheck: std none diff --git a/util/serialization.lua b/util/serialization.lua index dd6a2a2b..7ae77a3a 100644 --- a/util/serialization.lua +++ b/util/serialization.lua @@ -20,7 +20,6 @@ local pcall = pcall; local envload = require"util.envload".envload; local pos_inf, neg_inf = math.huge, -math.huge; --- luacheck: ignore 143/math local m_type = math.type or function (n) return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float"; end; |