util.dependencies: Quiet luacheck
authorKim Alvefur <zash@zash.se>
Sun, 28 Jun 2020 02:15:25 +0200
changeset 10979 f997e3e8bc23
parent 10978 3b9d533da8fe
child 10980 540f1bc5f082
util.dependencies: Quiet luacheck
util/dependencies.lua
--- a/util/dependencies.lua	Sat Jun 27 14:25:57 2020 +0200
+++ b/util/dependencies.lua	Sun Jun 28 02:15:25 2020 +0200
@@ -98,8 +98,8 @@
 		}, "WebSocket support will not be available", err);
 	end
 
-	local unbound, err = softreq"lunbound";
-	if not unbound then
+	local unbound, err = softreq"lunbound"; -- luacheck: ignore 211/err
+	if not unbound then -- luacheck: ignore 542
 		--[[ TODO Re-enable once packages are available
 		missingdep("lua-unbound", {
 				{ "luarocks", "luarocks install luaunbound" };