aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL Lllvvuu <git@llllvvuu.dev>2023-10-10 20:24:59 -0700
committerLewis Russell <me@lewisr.dev>2023-10-12 09:50:29 +0100
commit9c2270b8345907fe854688c648e1ff3dca4fd492 (patch)
treed8090236d2924cf22209ec30e7f90821d53cd2c8
parent840e1864c2de2b4b192a4df1865b69093904b139 (diff)
downloadrneovim-9c2270b8345907fe854688c648e1ff3dca4fd492.tar.gz
rneovim-9c2270b8345907fe854688c648e1ff3dca4fd492.tar.bz2
rneovim-9c2270b8345907fe854688c648e1ff3dca4fd492.zip
feat(types): add `test/.luarc.json`
Authored-By: Lewis Russell <lewis6991@gmail.com> Co-Authored-By: Lewis Russell <lewis6991@gmail.com>
-rw-r--r--test/.luarc.json28
1 files changed, 28 insertions, 0 deletions
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": [ "_*" ]
+ }
+}