-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.luacheckrc
66 lines (64 loc) · 831 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
55
56
57
58
59
60
61
62
63
64
65
66
std = "lua51"
files['.luacheckrc'].global = false
unused_args = false
cache = true
jobs = 4
--remove some imported libs
exclude_files = {
"richtext/**",
"gooey/**",
"libs/rx.lua",
"libs/log.lua",
"libs/ecs.lua",
}
read_globals = {
"sys",
"go",
"gui",
"label",
"render",
"crash",
"sprite",
"sound",
"tilemap",
"spine",
"particlefx",
"physics",
"factory",
"collectionfactory",
"iac",
"msg",
"vmath",
"url",
"http",
"image",
"json",
"zlib",
"iap",
"push",
"facebook",
"hash",
"hash_to_hex",
"pprint",
"window",
"unityads",
"socket",
"defreview",
"resource",
"buffer",
"appsflyer",
"timer",
"model",
"profiler",
"defos",
"mnu"
}
globals = {
"init",
"final",
"update",
"on_input",
"on_message",
"on_reload",
"__dm_script_instance__"
}