-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.luarc.json
37 lines (37 loc) · 957 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
{
"diagnostics.groupSeverity": {
"ambiguity": "Error",
"await": "Error",
"codestyle": "Error",
"duplicate": "Hint",
"global": "Error",
"luadoc": "Error",
"redefined": "Hint",
"strict": "Error",
"strong": "Error",
"type-check": "Error",
"unbalanced": "Error",
"unused": "Hint"
},
"runtime.path": [
"src/?.lua",
"src/?/init.lua",
"lua_modules/share/lua/5.1/?.lua",
"lua_modules/share/lua/5.1/?/init.lua",
"lua_modules/lib/lua/5.1/?.so"
],
"runtime.pathStrict": false,
"runtime.version": "LuaJIT",
"workspace.ignoreDir": [
".vscode",
],
"workspace.ignoreSubmodules": false,
"workspace.library": [
"lua_modules/share/lua/5.1/",
"lua_modules/lib/lua/5.1/"
],
"workspace.useGitIgnore": false,
"diagnostics.disableScheme": [
"rockspec"
]
}