This commit is contained in:
flux 2022-09-30 10:12:14 -07:00
commit d14fb5f0fe
No known key found for this signature in database
GPG key ID: 9333B27816848A15
10 changed files with 867 additions and 0 deletions

37
.luacheckrc Normal file
View file

@ -0,0 +1,37 @@
std = "lua51+luajit+minetest+book_runner"
unused_args = false
max_line_length = 120
stds.minetest = {
read_globals = {
"DIR_DELIM",
"core",
"dump",
"vector",
"nodeupdate",
"VoxelManip",
"VoxelArea",
"PseudoRandom",
"ItemStack",
"default",
"table",
"math",
"string",
minetest = {
fields = {
chat_send_player = {read_only = false},
},
other_fields = true,
},
}
}
stds.book_runner = {
globals = {
"book_runner",
},
read_globals = {
"futil",
},
}