minetest-i4/.luacheckrc

37 lines
456 B
Plaintext
Raw Normal View History

2020-12-30 16:21:05 -06:00
allow_defined_top = true
2021-01-23 13:54:49 -06:00
ignore = {
2021-11-30 11:39:35 -06:00
"631", -- Line is too long.
2021-01-23 13:54:49 -06:00
"get_debug_grid",
}
2020-12-30 16:21:05 -06:00
read_globals = {
"minetest",
"armor",
2021-01-02 14:15:18 -06:00
"skins",
2021-01-10 13:56:37 -06:00
"awards",
2020-12-30 16:21:05 -06:00
"vector",
"string",
"table",
"ItemStack",
"VoxelArea",
"VoxelManip",
2020-12-30 16:21:05 -06:00
}
globals = {
2021-01-23 13:54:49 -06:00
"i3",
2020-12-30 16:21:05 -06:00
"core",
2021-05-06 20:16:11 -05:00
"sfinv",
"unified_inventory",
2020-12-30 16:21:05 -06:00
}
2021-10-18 22:54:51 -05:00
exclude_files = {
2021-10-24 22:31:58 -05:00
"tests/test_compression.lua",
2021-10-18 22:54:51 -05:00
"tests/test_custom_recipes.lua",
2021-11-28 16:55:11 -06:00
"tests/test_operators.lua",
2021-10-18 22:54:51 -05:00
"tests/test_tabs.lua",
2021-11-02 22:31:36 -05:00
".install",
".luarocks",
2021-10-18 22:54:51 -05:00
}