lina/.luacheckrc
Luca Capezzuto 853946b665
Luacheck: ignore W113 too; GitHub Action: specify permissions
Ignoring W113 safely avoids warnings due to Awesome modules not found by
Luacheck.

Signed-off-by: Luca Capezzuto <luca.cpz@gmail.com>
2022-06-11 11:51:02 +02:00

13 lines
199 B
Lua

codes = true
allow_defined = true
max_line_length = false
globals = {
"client", "screen", "mouse"
}
-- https://luacheck.readthedocs.io/en/stable/warnings.html
ignore = {
"113",
"131"
}