forked from y3-editor/y3-lualib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.luarc.json
33 lines (33 loc) · 794 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
{
"diagnostics.globals": [
"gameapi",
"globalapi"
],
"workspace.preloadFileSize": 5000,
"runtime.pathStrict": true,
"runtime.path": [
"../?.lua",
"../?/init.lua"
],
"runtime.special": {
"include": "require"
},
"hover.expandAlias": false,
"doc.privateName": ["__*"],
"diagnostics.groupFileStatus": {
"ambiguity": "Any",
"await": "Any",
"duplicate": "Any",
"global": "Any",
"luadoc": "Any",
"redefined": "Any",
"strict": "Any",
"type-check": "Any",
"unbalanced": "Any",
"unused": "Any"
},
"type.weakNilCheck": false,
"type.weakUnionCheck": false,
"type.castNumberToInteger": false,
"runtime.unicodeName": true
}