mineclonia-cd2025/.luarc.json

32 lines
559 B
JSON
Raw Normal View History

2023-07-26 23:52:51 +02:00
{
2024-07-26 00:33:26 +02:00
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"hint.enable": true,
"runtime.version": "LuaJIT",
"diagnostics": {
"disable": [
"lowercase-global",
"redefined-local",
"undefined-field",
2024-07-26 00:33:26 +02:00
]
},
"diagnostics.globals": [
"minetest",
2024-07-29 04:06:51 +02:00
"core",
2024-07-26 00:33:26 +02:00
"dump",
"dump2",
"Raycast",
"Settings",
"PseudoRandom",
"PerlinNoise",
"VoxelManip",
"SecureRandom",
"VoxelArea",
"PerlinNoiseMap",
"PcgRandom",
"ItemStack",
"AreaStore",
"vector"
],
"workspace.ignoreDir": [".luacheckrc"]
2023-07-26 23:52:51 +02:00
}