MineClone2/.luacheckrc

43 lines
540 B
Plaintext
Raw Normal View History

2021-04-15 15:26:12 +03:00
unused_args = false
allow_defined_top = true
2021-04-16 13:59:00 +03:00
max_line_length = false
2021-04-17 08:42:49 +03:00
redefined = false
2021-04-15 15:26:12 +03:00
globals = {
"minetest", "core",
}
2021-04-15 15:19:11 +03:00
read_globals = {
"DIR_DELIM",
"dump", "dump2",
"vector",
"VoxelManip", "VoxelArea",
2021-04-17 10:26:37 +03:00
"PseudoRandom", "PcgRandom", "PerlinNoise", "PerlinNoiseMap",
2021-04-15 15:19:11 +03:00
"ItemStack",
"Settings",
"unpack",
table = {
fields = {
"copy",
"indexof",
"insert_all",
"key_value_swap",
}
},
string = {
fields = {
"split",
"trim",
}
},
math = {
fields = {
"hypot",
"sign",
"factorial"
}
},
}