MineClone2/.luacheckrc

43 lines
522 B
Plaintext
Raw Normal View History

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