# HG changeset patch # User Kim Alvefur # Date 1577133499 -3600 # Node ID 0bd408d93f9a6aa7324c63f142cf73dd018245eb # Parent 46b456ed12bd2fd2a750684e1667d2f155537719 mod_admin_telnet: Silence luacheck warnings diff -r 46b456ed12bd -r 0bd408d93f9a plugins/mod_admin_telnet.lua --- a/plugins/mod_admin_telnet.lua Mon Dec 23 21:37:16 2019 +0100 +++ b/plugins/mod_admin_telnet.lua Mon Dec 23 21:38:19 2019 +0100 @@ -125,6 +125,7 @@ local chunkname = "=console"; local env = (useglobalenv and redirect_output(_G, session)) or session.env or nil + -- luacheck: ignore 311/err local chunk, err = envload("return "..line, chunkname, env); if not chunk then chunk, err = envload(line, chunkname, env); @@ -1427,7 +1428,7 @@ function stats_methods:cfgraph() for _, stat_info in ipairs(self) do - local name, type, value, data = unpack(stat_info, 1, 4); + local name, type, value, data = unpack(stat_info, 1, 4); -- luacheck: ignore 211 local function print(s) table.insert(stat_info.output, s); end @@ -1493,7 +1494,7 @@ function stats_methods:histogram() for _, stat_info in ipairs(self) do - local name, type, value, data = unpack(stat_info, 1, 4); + local name, type, value, data = unpack(stat_info, 1, 4); -- luacheck: ignore 211 local function print(s) table.insert(stat_info.output, s); end @@ -1593,6 +1594,7 @@ end function def_env.stats:show(filter) + -- luacheck: ignore 211/changed local stats, changed, extra = require "core.statsmanager".get_stats(); local available, displayed = 0, 0; local displayed_stats = new_stats_context(self);