2021-07-30 18:03:40 +00:00
|
|
|
quiet = 1
|
|
|
|
codes = true
|
|
|
|
|
|
|
|
exclude_files = {
|
2021-07-30 18:52:36 +00:00
|
|
|
".luarocks/*",
|
2022-09-20 19:03:36 +00:00
|
|
|
"worldeditadditions_core/utils/bit.lua"
|
2021-07-30 18:03:40 +00:00
|
|
|
}
|
|
|
|
|
2021-11-07 13:35:40 +00:00
|
|
|
files["worldeditadditions_core/register/check.lua"] = { read_globals = { "table" } }
|
2021-07-30 18:03:40 +00:00
|
|
|
|
2021-07-30 18:52:36 +00:00
|
|
|
ignore = {
|
|
|
|
"631", "61[124]",
|
2021-07-30 18:58:23 +00:00
|
|
|
"542",
|
2021-07-30 18:52:36 +00:00
|
|
|
"412",
|
|
|
|
"321/bit",
|
|
|
|
"21[123]"
|
|
|
|
}
|
2021-07-30 18:03:40 +00:00
|
|
|
|
|
|
|
-- Read-write globals (i.e. they can be defined)
|
|
|
|
globals = {
|
|
|
|
"worldedit",
|
|
|
|
"worldeditadditions",
|
|
|
|
"worldeditadditions_commands",
|
|
|
|
"worldeditadditions_core"
|
|
|
|
}
|
|
|
|
-- Read-only globals
|
|
|
|
read_globals = {
|
|
|
|
"minetest",
|
|
|
|
"vector",
|
|
|
|
"assert",
|
|
|
|
"bit",
|
|
|
|
"it",
|
|
|
|
"describe",
|
|
|
|
"bonemeal",
|
2021-08-07 21:30:10 +00:00
|
|
|
"dofile",
|
2022-05-24 01:24:43 +00:00
|
|
|
"PerlinNoise",
|
2023-11-28 00:38:48 +00:00
|
|
|
"Settings",
|
|
|
|
"VoxelArea"
|
2021-07-30 18:03:40 +00:00
|
|
|
}
|
|
|
|
std = "max"
|