-
Notifications
You must be signed in to change notification settings - Fork 28
/
.luacheckrc
58 lines (53 loc) · 1.18 KB
/
.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
unused_args = true
allow_defined_top = true
max_line_length = 140
ignore = {
"431", -- shadowing an upvalue
"432", -- shadowing an upvalue argument
"542", -- empty if branch
}
globals = {
"minetest",
"areas",
"experience",
"invisibility",
"mobs",
"screwdriver",
"workbench",
"brewing",
}
read_globals = {
"DIR_DELIM",
"PLATFORM",
"climate_api",
"hud",
"hunger",
"dump",
"vector",
"utf8",
"VoxelManip", "VoxelArea",
"PseudoRandom", "PcgRandom",
"ItemStack",
"unpack",
"playerphysics",
"node_attacher",
"bonemeal",
"sscsm",
"hopper",
"workbench",
-- Silence errors about custom table and string methodss.
table = { fields = { "copy", "indexof", "insert_all" } },
string = { fields = { "split", "buffer" } },
-- Silence warnings about accessing undefined fields of global 'math'
math = { fields = { "sign" } }
}
exclude_files = {
"files/deprecated/init.lua",
"files/workbench/init.lua",
"files/signs/slugify.lua",
"MODS/mobs/mobs_redo/api.lua",
}
files["files/bluestone/mesecons/actionqueue.lua"].unused = false
files["files/carts/*.lua"].unused = false
files["files/player/playereffects/init.lua"].unused = false
files["MODS/3d_armor/3d_armor/api.lua"].unused = false