.luarc.json (597B)
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 "${3rd}/busted/library" 9 ], 10 "ignoreDir": [ 11 ".deps", 12 "build", 13 "test" 14 ], 15 "checkThirdParty": "Disable" 16 }, 17 "diagnostics": { 18 "groupFileStatus": { 19 "strict": "Opened", 20 "strong": "Opened" 21 }, 22 "groupSeverity": { 23 "strong": "Warning", 24 "strict": "Warning" 25 }, 26 "unusedLocalExclude": [ "_*" ], 27 "disable": [ 28 "luadoc-miss-see-name" 29 ] 30 } 31 }