From fb5d995775c99c0cc7148d719ec97570007236ad Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage Vallee Date: Wed, 28 Sep 2016 17:29:56 -0400 Subject: [PATCH] tests: Fix a luacheck issue. --- .luacheckrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index b5f6f6216..715943939 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -23,13 +23,16 @@ read_globals = { "mouse", "mousegrabber", "root", - "screen", "selection", "tag", "window", } --- May not be read-only due to client.focus + +-- screen may not be read-only, because newer luacheck versions complain about +-- screen[1].tags[1].selected = true. +-- client may not be read-only due to client.focus. globals = { + "screen", "client" }