# HG changeset patch # User Kim Alvefur # Date 1539201206 -7200 # Node ID 6489d75ff1d6391d89b20b72612af5c255ea5e92 # Parent cc19b8f8e6929a8b48105b4e38950911b531b2b2 mod_http_files: Silence luacheck warnings related to config variables diff -r cc19b8f8e692 -r 6489d75ff1d6 plugins/mod_http_files.lua --- a/plugins/mod_http_files.lua Wed Oct 10 21:53:15 2018 +0200 +++ b/plugins/mod_http_files.lua Wed Oct 10 21:53:26 2018 +0200 @@ -89,6 +89,7 @@ if type(opts) ~= "table" then -- assume path string opts = { path = opts }; end + -- luacheck: ignore 431 local base_path = opts.path; local dir_indices = opts.index_files or dir_indices; local directory_index = opts.directory_index;