MineClone2/.luarc.json

31 lines
523 B
JSON
Raw Normal View History

2022-10-18 14:49:21 +02:00
{
"runtime.version": "LuaJIT",
"diagnostics": { "disable": ["lowercase-global"] },
"diagnostics.globals": [
"minetest",
"dump",
"dump2",
"Raycast",
"Settings",
"PseudoRandom",
"PerlinNoise",
"VoxelManip",
"SecureRandom",
"VoxelArea",
"PerlinNoiseMap",
"PcgRandom",
"ItemStack",
"AreaStore",
2024-06-09 15:09:51 +02:00
"vector",
"voxelibre"
2022-10-18 14:49:21 +02:00
],
2024-06-09 15:31:13 +02:00
"workspace.ignoreDir": [".luacheckrc"],
"fields": {
"table": {
"merge": {
"type": "function"
}
}
}
2022-10-18 14:49:21 +02:00
}