Detect the Lua project root using .luarc.json

This commit is contained in:
w0rp
2025-03-21 12:07:10 +00:00
parent bcd1a12949
commit 7f43666fb3
3 changed files with 25 additions and 0 deletions

19
test/lua/.luarc.json Normal file
View File

@@ -0,0 +1,19 @@
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"diagnostics.globals": [
"vim",
"describe",
"it",
"before_each",
"after_each",
"setup",
"teardown",
"pending",
"assert"
],
"workspace.library": [
"../../lua"
],
"runtime.version": "LuaJIT",
"hint.enable": false
}