awesomerc/.luacheckrc

48 lines
666 B
Plaintext
Raw Normal View History

2024-11-03 01:59:30 +01:00
std = "lua54"
2021-10-06 00:24:22 +02:00
2024-11-03 01:59:30 +01:00
files[".luamonrc"].std = {
globals = {
"ext",
"lang",
},
}
files["awesomerc-dev-1.rockspec"].ignore = {
"631", -- Line is too long.
}
include_files = {
".busted",
".luacheckrc",
".luamonrc",
"*.rockspec",
"src/**/*.lua",
}
exclude_files = {
"src/awesome-wm-nice", -- Vendored code with its own .luacheckrc
}
2021-10-06 00:24:22 +02:00
read_globals = {
"awesome",
"button",
"dbus",
"drawable",
"drawin",
"key",
"keygrabber",
"mousegrabber",
"selection",
"tag",
"window",
"table.unpack",
"math.atan2",
}
2024-11-03 01:59:30 +01:00
globals = {
"screen",
"mouse",
"root",
"client",
}