-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.luacheckrc
54 lines (47 loc) · 863 Bytes
/
.luacheckrc
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
std = "min"
exclude_files = {
"lib",
}
files["src"] = {
ignore = {"212", "213"},
globals = {
"love",
"unpack",
"math",
-- utils.lua functions and values
"rgb",
"cropAngle",
"sign",
"fade",
"flux",
"RED",
"GREEN",
"BLUE",
"getTime",
"update",
-- color effect
"getColor",
-- GUI stuff from YALG
"rgb",
"Font",
"GUI",
"VDiv",
"HDiv",
"Button",
"Label",
"Switcher",
-- sound system
"sounds"
}
}
files["main.lua"] = files["src"]
files["conf.lua"] = files["src"]
files["builder"] = {
globals = {
"run_command",
"capture_command",
"magiclines",
"endswith",
"append_path"
}
}