server_epoll: Ignore unused loop variable [luacheck]
authorKim Alvefur <zash@zash.se>
Sun, 01 Jan 2017 19:41:03 +0100
changeset 7802 93643a61858a
parent 7801 74cfec1fe5a2
child 7803 dadf9ba290c5
server_epoll: Ignore unused loop variable [luacheck]
net/server_epoll.lua
--- a/net/server_epoll.lua	Sun Jan 01 19:35:06 2017 +0100
+++ b/net/server_epoll.lua	Sun Jan 01 19:41:03 2017 +0100
@@ -605,7 +605,7 @@
 end
 
 local function closeall()
-	for fd, conn in pairs(fds) do
+	for fd, conn in pairs(fds) do -- luacheck: ignore 213/fd
 		conn:close();
 	end
 end