mirror of
https://github.com/minetest-mods/digtron.git
synced 2024-12-22 04:12:23 +01:00
3e1c1ca208
* add luacheck and ci workflow * fix another bunch * more fixes * more fixes * regex magic * add deps * doc.lua special rules * more regex magic * final fixes --------- Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
27 lines
390 B
Lua
27 lines
390 B
Lua
max_line_length = 200
|
|
|
|
globals = {
|
|
"digtron",
|
|
"catacomb"
|
|
}
|
|
|
|
read_globals = {
|
|
-- Stdlib
|
|
string = {fields = {"split"}},
|
|
table = {fields = {"copy", "getn"}},
|
|
"VoxelManip",
|
|
|
|
-- Minetest
|
|
"minetest",
|
|
"vector", "ItemStack",
|
|
"dump", "VoxelArea",
|
|
|
|
-- Deps
|
|
"default", "awards", "pipeworks", "hopper", "technic", "doc", "intllib"
|
|
}
|
|
|
|
files = {
|
|
["doc.lua"] = {
|
|
max_line_length = 1000
|
|
}
|
|
} |