prosody: Silence warnings about setting the globals 'server' and 'socket' [luacheck]
authorKim Alvefur <zash@zash.se>
Sun, 29 Jan 2017 22:31:34 +0100
changeset 7880 23c7e3bfd299
parent 7879 c028555866b3
child 7881 2fdb7b3648d8
child 7882 5d0175d3ecf4
prosody: Silence warnings about setting the globals 'server' and 'socket' [luacheck]
prosody
--- a/prosody	Sun Jan 29 22:26:38 2017 +0100
+++ b/prosody	Sun Jan 29 22:31:34 2017 +0100
@@ -129,6 +129,7 @@
 
 function load_libraries()
 	-- Load socket framework
+	-- luacheck: ignore 111/server 111/socket
 	socket = require "socket";
 	server = require "net.server"
 end