Minetest-WorldEditAdditions/.luacheckrc
Starbeamrainbowlabs d74427e017
Fix some luacheck errors
the others are because rotate.lua isn't finished
Unfortunately I don't have the time to fix it now, because it will require a lot of time
2024-10-02 01:17:41 +01:00

42 lines
634 B
Lua

quiet = 1
codes = true
exclude_files = {
".luarocks/*",
"worldeditadditions_core/utils/bit.lua"
}
files["worldeditadditions_core/register/check.lua"] = { read_globals = { "table" } }
ignore = {
"631", "61[124]",
"542",
"412",
"321/bit",
"21[123]"
}
-- 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",
"dofile",
"PerlinNoise",
"Settings",
"VoxelArea",
"pova" -- optional mod support
}
std = "max"