libuix/.luacheckrc
octacian 40844d9720
Split utility.lua
- ErrorBuilder moves to errors.lua
- Queue moves to queue.lua
- String helpers move to strings.lua
- Table helpers move to tables.lua
- Type checking moves to types.lua
2020-04-08 15:33:31 -07:00

24 lines
425 B
Lua

unused_args = false
allow_defined_top = true
globals = {
"table",
"string",
"minetest",
"model"
}
read_globals = {
--string = {fields = {"split"}},
--table = {fields = {"copy", "getn"}},
-- Builtin
"vector", "ItemStack",
"DIR_DELIM", "VoxelArea", "Settings",
"libuix", "import", "ui", "UNIT_TEST", "DEBUG",
-- libuix operator replacement functions
"eq", "ne", "lt", "gt", "le", "ge", "land", "lor", "lnot"
}