initial commit

This commit is contained in:
Till Affeldt
2023-03-17 19:50:33 +01:00
commit 623ee19115
5 changed files with 132 additions and 0 deletions

41
.luacheckrc Normal file
View File

@ -0,0 +1,41 @@
std = "luajit+minetest+monoids"
ignore = { "212" }
files[".luacheckrc"].std = "min+luacheck"
stds.luacheck = {}
stds.luacheck.globals = {
"files",
"ignore",
"std",
"stds"
}
stds.minetest = {}
stds.minetest.read_globals = {
"DIR_DELIM",
"minetest",
"dump",
"vector",
"VoxelManip",
"VoxelArea",
"PseudoRandom",
"PcgRandom",
"ItemStack",
"Settings",
"unpack",
"assert",
"S",
table = { fields = { "copy", "indexof" } },
math = { fields = { "sign" } }
}
stds.monoids = {}
stds.monoids.globals = {
"lighting_monoids",
"weather"
}
stds.monoids.read_globals = {
"player_monoids"
}