MineClone2/.luacheckrc

58 lines
713 B
Plaintext
Raw Normal View History

2022-09-10 22:34:31 +02:00
---@diagnostic disable
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 = {
2022-09-10 22:34:31 +02:00
"minetest", "core",
2021-04-15 14:26:12 +02:00
}
2021-04-15 14:19:11 +02:00
read_globals = {
"DIR_DELIM",
"dump", "dump2",
"vector",
"VoxelManip", "VoxelArea",
2021-04-17 09:26:37 +02:00
"PseudoRandom", "PcgRandom", "PerlinNoise", "PerlinNoiseMap",
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"
}
},
2022-09-10 22:34:31 +02:00
------
--MODS
------
2021-05-23 13:43:59 +02:00
2022-09-10 22:34:31 +02:00
--GENERAL
"default",
2021-05-23 13:43:59 +02:00
2022-09-10 22:34:31 +02:00
--ENTITIES
"cmi",
2022-09-10 22:34:31 +02:00
--HUD
"sfinv", "sfinv_buttons", "unified_inventory", "cmsg", "inventory_plus",
}