-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.luarc.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy path.luarc.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"runtime": {
"version": "LuaJIT",
"path": [
"lua/?.lua",
"lua/?/init.lua"
]
},
"workspace": {
"checkThirdParty": false,
"library": [
"${3rd}/luv/library",
"${3rd}/busted/library",
"${3rd}/neovim/runtime/lua"
]
},
"diagnostics": {
"globals": [
"vim"
],
"undefined-global": "Error",
"strict": true,
"type-check": true,
"unused-local": "Warning",
"unused-function": "Warning",
"unused-vararg": "Warning",
"redefined-local": "Warning",
"duplicate-set-field": "Warning",
"missing-parameter": "Warning",
"param-type-mismatch": "Warning",
"cast-local-type": "Warning",
"need-check-nil": "Warning"
},
"hint": {
"enable": true,
"setType": true,
"paramType": true,
"paramName": "All",
"arrayIndex": "Auto"
},
"format": {
"enable": false
},
"telemetry": {
"enable": false
}
}