From 9c2270b8345907fe854688c648e1ff3dca4fd492 Mon Sep 17 00:00:00 2001 From: L Lllvvuu Date: Tue, 10 Oct 2023 20:24:59 -0700 Subject: [PATCH] feat(types): add `test/.luarc.json` Authored-By: Lewis Russell Co-Authored-By: Lewis Russell --- test/.luarc.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 test/.luarc.json 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": [ "_*" ] + } +}