commit 9c2270b8345907fe854688c648e1ff3dca4fd492
parent 840e1864c2de2b4b192a4df1865b69093904b139
Author: L Lllvvuu <git@llllvvuu.dev>
Date: Tue, 10 Oct 2023 20:24:59 -0700
feat(types): add `test/.luarc.json`
Authored-By: Lewis Russell <lewis6991@gmail.com>
Co-Authored-By: Lewis Russell <lewis6991@gmail.com>
Diffstat:
1 file changed, 28 insertions(+), 0 deletions(-)
diff --git a/test/.luarc.json 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": [ "_*" ]
+ }
+}