mirror of
https://github.com/HybridDog/nether-pack.git
synced 2024-11-16 23:40:20 +01:00
18 lines
375 B
Lua
18 lines
375 B
Lua
read_globals = {
|
|
-- Defined by Minetest
|
|
"minetest", "vector", "PseudoRandom", "VoxelArea", "ItemStack", "dump",
|
|
"string",
|
|
|
|
-- Mods
|
|
"default", "stairs"
|
|
}
|
|
globals = {"nether"}
|
|
ignore = {
|
|
"212",
|
|
-- Unused argument
|
|
"411", "421", "422", "423", "431", "432",
|
|
-- Shadowing
|
|
}
|
|
-- Allow very long lines in guide.lua for the HTML code
|
|
files["guide.lua"] = {ignore = {"631"}}
|