Teach LuaCheck about vector.* fields

This commit is contained in:
sfan5 2024-05-26 15:37:06 +02:00
parent f8442ef9fd
commit e20a5a4e09
1 changed files with 11 additions and 3 deletions

View File

@ -1,9 +1,17 @@
read_globals = {"minetest", "vector", "VoxelArea", "ItemStack",
"table",
read_globals = {
"minetest", "VoxelArea", "ItemStack",
"unified_inventory", "sfinv", "smart_inventory", "inventory_plus",
"dump"
"dump",
table = {fields = {"copy", "indexof", "insert_all"}},
vector = {fields = {
-- as of 5.0
"new", "direction", "distance", "length", "normalize", "floor", "round",
"apply", "equals", "sort", "add", "subtract", "multiply", "divide"
}},
}
globals = {"worldedit"}
-- Ignore these errors until someone decides to fix them
ignore = {"212", "213", "411", "412", "421", "422", "431", "432", "631"}