-
Notifications
You must be signed in to change notification settings - Fork 3
/
.luarc.json
41 lines (41 loc) · 907 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
{
"languageMode": "strict",
"lint": {"*": true, "LocalUnused": false},
"lintErrors": true,
"globals": [
"DEBUG"
],
"diagnostics.globals": [
"Navigator",
"json",
"utils",
"vec3",
"construct",
"core",
"library",
"player",
"system",
"unit",
"constants"
],
"completion.autoRequire": false,
"workspace": {
"library": [
"./lua",
"./util",
"./util/du-mocks",
"C:/DualUniverse/game/data/lua",
"C:/DualUniverse/game/data/lua/utils",
"C:/DualUniverse/game/data/lua/pl"
]
},
"runtime.version": "Lua 5.4",
"diagnostics.disable": [
"undefined-global",
"undefined-doc-param",
"redundant-parameter",
"lowercase-global",
"duplicate-set-field"
],
"workspace.maxPreload": 1100
}