-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy path.luarc.json
More file actions
26 lines (26 loc) · 815 Bytes
/
.luarc.json
File metadata and controls
26 lines (26 loc) · 815 Bytes
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
{
"runtime.version": "Lua 5.5",
"diagnostics": {
"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
}