blob: ad11fee7f26a71b8335df87dbcb5d739e931d220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
unused_args = false
redefined = false
max_line_length = false
globals = {
"win_it",
"nix_it",
}
not_globals = {
-- deprecated Lua 5.0 functions
"string.len",
"table.getn",
}
include_files = {
"**/*.lua",
"**/*.rockspec",
".busted",
".luacheckrc",
}
files["spec/**/*.lua"] = {
std = "+busted",
}
exclude_files = {
-- The Github Actions Lua Environment
".lua",
".luarocks",
".install",
}
|