.luarc.json (630B)
1 { 2 "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json", 3 "runtime": { 4 "version": "LuaJIT" 5 }, 6 "workspace": { 7 "library": [ 8 "../runtime/lua", 9 "../src", 10 "../build/usr/share/lua/5.1", 11 "../build", 12 "${3rd}/busted/library", 13 "${3rd}/luassert/library", 14 "${3rd}/luv/library" 15 ], 16 "checkThirdParty": "Disable" 17 }, 18 "diagnostics": { 19 "groupFileStatus": { 20 "strict": "Opened", 21 "strong": "Opened" 22 }, 23 "groupSeverity": { 24 "strong": "Warning", 25 "strict": "Warning" 26 }, 27 "unusedLocalExclude": [ "_*" ] 28 } 29 }