-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.luarc.json
36 lines (36 loc) · 794 Bytes
/
.luarc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"runtime": {
"version": "LuaJIT"
},
"workspace": {
"ignoreDir": ["docgen"],
"library": [
"lua",
"$VIMRUNTIME",
"${3rd}/busted/library",
"${3rd}/luassert/library",
"${3rd}/luv/library"
],
"checkThirdParty": false
},
"diagnostics": {
"groupFileStatus": {
"strict": "Any",
"strong": "Any",
"ambiguity" : "Any",
"duplicate" : "Any",
"global" : "Any",
"luadoc" : "Any",
"redefined" : "Any",
"type-check" : "Any",
"unbalanced" : "Any",
"unused" : "Any"
},
"groupSeverity": {
"strong": "Error",
"strict": "Error"
},
"unusedLocalExclude": [ "_*" ]
}
}