updated luarc.json
PR Prerequisites / Bundles Without Errors (pull_request) Failing after 6s
PR Prerequisites / Lua Check (pull_request) Failing after 21s

This commit is contained in:
2026-09-10 19:56:06 +02:00
parent ce0c5f4a58
commit 6b5fd16a2f
2 changed files with 8 additions and 5 deletions
+7
View File
@@ -72,6 +72,13 @@ jobs:
- name: Verify Lua Language Server Installation - name: Verify Lua Language Server Installation
run: ./luals/bin/lua-language-server --version run: ./luals/bin/lua-language-server --version
- name: Update Json With Full Path
run: |
FULL_PATH=$(realpath ./.vscode/lua-addons)
echo "full-path: $FULL_PATH"
jq --arg full_path "$FULL_PATH" '.Lua.workspace.library[0] = $full_path' ./.luarc.json > ./.luarc.json.tmp && mv ./.luarc.json.tmp ./.luarc.json
- name: Show Config - name: Show Config
run: cat ./.luarc.json run: cat ./.luarc.json
+1 -5
View File
@@ -4,10 +4,7 @@
"version": "Lua 5.1" "version": "Lua 5.1"
}, },
"workspace": { "workspace": {
"checkThirdParty": false, "checkThirdParty": false
"library": [
".vscode/lua-addons"
]
}, },
"diagnostics": { "diagnostics": {
"enable": true, "enable": true,
@@ -18,7 +15,6 @@
"undefined-field": "Warning", "undefined-field": "Warning",
"unused-local": "Warning", "unused-local": "Warning",
"unused-function": "Warning" "unused-function": "Warning"
}, },
"groupFileStatus": { "groupFileStatus": {
"ambiguity": "Any", "ambiguity": "Any",