forked from mt-mods/technic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.luacheckrc
37 lines (31 loc) · 829 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
unused_args = false
-- Exclude regression tests / unit tests
exclude_files = {
"**/spec/**",
}
globals = {
"technic", "technic_cnc", "minetest"
}
read_globals = {
-- Lua
string = {fields = {"split", "trim"}},
table = {fields = {"copy", "getn"}},
-- Minetest
"PseudoRandom", "ItemStack",
"VoxelArea", "VoxelManip",
"Settings", "vector",
-- Mods
"default", "stairsplus",
"screwdriver", "bucket",
"digilines", "pipeworks",
"mesecon", "moretrees",
"unified_inventory", "protector",
"unifieddyes", "digiline_remote",
"drawers", "mg", "mcl_explosions",
"craftguide", "i3", "mtt",
"vizlib", "mcl_sounds", "mcl_vars",
"mcl_worlds", "mcl_buckets", "mcl_formspec",
"mcl_craftguide","exchangeclone",
-- Only used in technic/machines/MV/lighting.lua (disabled)
"isprotect", "homedecor_expect_infinite_stacks",
}