-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.luarc.json
42 lines (42 loc) · 954 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
37
38
39
40
41
42
{
"$schema": "https://raw.githubusercontent.com/luals/vscode-lua/master/setting/schema.json",
"runtime": {
"version": "LuaJIT"
},
"workspace": {
"library": [
"$VIMRUNTIME",
"nvim-test",
"${3rd}/luv/library",
"${3rd}/luassert/library",
"${3rd}/busted/library"
],
"checkThirdParty": false
},
"diagnostics": {
"libraryFiles": "Disable",
"groupFileStatus": {
"ambiguity": "Opened",
"await": "None",
"codestyle": "None",
"conventions": "Opened",
"duplicate": "Opened",
"global": "Opened",
"luadoc": "Opened",
"redefined": "Opened",
"strict": "Opened",
"strong": "Opened",
"type-check": "Opened",
"unbalanced": "Opened",
"unused": "Opened"
},
"groupSeverity": {
"strong": "Warning",
"strict": "Warning"
},
"unusedLocalExclude": [ "_*" ]
},
"type": {
"checkTableShape": true
}
}