-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.luarc.json
37 lines (37 loc) · 822 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
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"runtime": {
"version": "LuaJIT"
},
"workspace": {
"library": [
"$HOME/.local/share/nvim/lazy/neodev.nvim/types/stable",
"$HOME/.local/share/nvim/lazy/orgmode/lua",
"$VIMRUNTIME",
"$VIMRUNTIME/lua",
"lua",
"${3rd}/busted/library",
"${3rd}/luassert/library",
"${3rd}/luv/library",
],
"ignoreDir": [
"spec"
],
"checkThirdParty": "Disable"
},
"diagnostics": {
"groupFileStatus": {
"strict": "Opened",
"strong": "Opened"
},
"groupSeverity": {
"strong": "Warning",
"strict": "Warning"
},
"unusedLocalExclude": [ "_*" ],
"disable": [
"luadoc-miss-see-name",
"no-unknown",
]
}
}