util.statsd: Ignore unused argument [luacheck]
authorKim Alvefur <zash@zash.se>
Tue, 18 Oct 2016 15:17:29 +0200
changeset 7704 672a863105f6
parent 7703 0d70410efdcf
child 7705 9385c367e920
util.statsd: Ignore unused argument [luacheck]
util/statsd.lua
--- a/util/statsd.lua	Tue Oct 18 15:16:30 2016 +0200
+++ b/util/statsd.lua	Tue Oct 18 15:17:29 2016 +0200
@@ -44,7 +44,7 @@
 			end
 			return function (new_v) send_gauge(name, new_v); end
 		end;
-		counter = function (name, initial)
+		counter = function (name, initial) --luacheck: ignore 212/initial
 			return function (delta)
 				send_gauge(name, delta, true);
 			end;