-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.luarc.json
59 lines (59 loc) · 1.03 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"runtime": {
"version": "LuaJIT"
},
"workspace": {
"checkThirdParty": false
},
"diagnostics": {
"libraryFiles": "Disable",
"_groupFileStatus": {
"strict": "Opened",
"strong": "Opened",
"ambiguity": "Opened",
"duplicate": "Opened",
"global": "Opened",
"luadoc": "Opened",
"redefined": "Opened",
"type-check": "Opened",
"unbalanced": "Opened",
"unused": "Opened"
},
"globals": [
"s",
"sn",
"isn",
"t",
"i",
"f",
"c",
"d",
"r",
"events",
"ai",
"extras",
"l",
"rep",
"p",
"m",
"n",
"dl",
"fmt",
"fmta",
"conds",
"postfix",
"types",
"parse",
"nl",
"tnl",
"nlt",
"sel"
],
"groupSeverity": {
"strong": "Warning",
"strict": "Warning"
},
"unusedLocalExclude": ["_*"]
}
}