tests: Fix a luacheck issue.
This commit is contained in:
parent
7f74c783cd
commit
fb5d995775
|
@ -23,13 +23,16 @@ read_globals = {
|
||||||
"mouse",
|
"mouse",
|
||||||
"mousegrabber",
|
"mousegrabber",
|
||||||
"root",
|
"root",
|
||||||
"screen",
|
|
||||||
"selection",
|
"selection",
|
||||||
"tag",
|
"tag",
|
||||||
"window",
|
"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 = {
|
globals = {
|
||||||
|
"screen",
|
||||||
"client"
|
"client"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue