util.json tests: Add [luacheck] annotation to mark intentionally-empty if branch

This commit is contained in:
Matthew Wild 2018-09-17 15:28:53 +01:00
parent 5c12f56a9e
commit 0207b2d785
2 changed files with 1 additions and 2 deletions

View file

@ -42,7 +42,7 @@ describe("util.json", function()
local f = assert(io.open(path.."/"..name));
local content = assert(f:read("*a"));
assert(f:close());
if skip:find(name) then
if skip:find(name) then --luacheck: ignore 542
-- Skip
elseif name:match("^pass") then
valid_data[name] = content;