Changeset

10975:f997e3e8bc23

util.dependencies: Quiet luacheck
author Kim Alvefur <zash@zash.se>
date Sun, 28 Jun 2020 02:15:25 +0200
parents 10974:3b9d533da8fe
children 10976:540f1bc5f082
files util/dependencies.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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" };