-
Notifications
You must be signed in to change notification settings - Fork 94
/
.luarc.json
41 lines (41 loc) · 1.11 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
{
"runtime.version": "Lua 5.4",
"workspace": {
"ignoreDir": [
"extension/script/backend/worker/eval/ffi_reflect.lua"
]
},
"diagnostics": {
"globals": [
"loadstring",
"unpack",
"jit"
],
"disable": [
"discard-returns",
"undefined-field",
"need-check-nil"
],
"neededFileStatus": {
"redefined-local": "Any",
"unused-vararg": "Any",
"unused-function": "Any",
"unused-local": "Any",
"unused-label": "Any",
"code-after-break": "Any",
"empty-block": "Any",
"trailing-space": "Any"
},
"severity": {
"redefined-local": "Hint",
"unused-vararg": "Warning",
"unused-function": "Warning",
"unused-local": "Warning",
"unused-label": "Warning",
"code-after-break": "Warning",
"empty-block": "Warning",
"trailing-space": "Warning"
}
},
"workspace.checkThirdParty": false
}