25 lines
609 B
Lua
25 lines
609 B
Lua
unused_args = false
|
|
allow_defined_top = true
|
|
|
|
read_globals = {
|
|
"DIR_DELIM",
|
|
"minetest", "core",
|
|
"dump",
|
|
"vector",
|
|
"VoxelManip", "VoxelArea",
|
|
"PseudoRandom", "PcgRandom",
|
|
"ItemStack",
|
|
"Settings",
|
|
"unpack",
|
|
-- Silence errors about custom table methods.
|
|
table = { fields = { "copy", "indexof" } },
|
|
-- Silence warnings about accessing undefined fields of global 'math'
|
|
math = { fields = { "sign" } }
|
|
}
|
|
|
|
-- Overwrites minetest.handle_node_drops
|
|
files["mods/creative/init.lua"].globals = { "minetest" }
|
|
|
|
-- Don't report on legacy definitions of globals.
|
|
files["mods/default/legacy.lua"].global = false
|