diff --git a/test/.luarc.json b/test/.luarc.json new file mode 100644 index 0000000000..5d19a37266 --- /dev/null +++ b/test/.luarc.json @@ -0,0 +1,28 @@ +{ + "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json", + "runtime": { + "version": "LuaJIT" + }, + "workspace": { + "library": [ + "../runtime/lua", + "../build/usr/share/lua/5.1", + "../build", + "${3rd}/busted/library", + "${3rd}/luassert/library", + "${3rd}/luv/library" + ], + "checkThirdParty": false + }, + "diagnostics": { + "groupFileStatus": { + "strict": "Opened", + "strong": "Opened" + }, + "groupSeverity": { + "strong": "Warning", + "strict": "Warning" + }, + "unusedLocalExclude": [ "_*" ] + } +}