summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 090b9478e78cb698b189d73b8e82b9a0e619bf6a (plain)
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
// Just some comment
{
    "Lua.diagnostics.globals": [
        "ERR",
        "OUT",
        "IN",
        "log",
        "_G",
        "GC",
        "ID",
        "DEVELOP",
        "DBGPORT",
        "DBGWAIT",
        "tracy"
    ],
    "Lua.diagnostics.disable": [
        "close-non-object"
    ],
    "Lua.runtime.version": "Lua 5.4",
    // Just some comment
    "Lua.workspace.maxPreload": 600,
    "Lua.workspace.preloadFileSize": 1000,
    "Lua.workspace.ignoreDir": [
        "locale/",
        "libs/",
        "3rd",
        ".vscode",
        "meta",
    ],
    "Lua.workspace.library": {
        "E:/Github/test" : true,
        // Just some comment
        "script/meta" : true,
    },
    "Lua.plugin.enable": true,
    "Lua.awakened.cat": true,
    "Lua.develop.enable": true,
    "Lua.develop.debuggerPort": 11413,
    "Lua.intelliSense.searchDepth": 0,
    "Lua.runtime.path": [
        "?.lua",
        "script/?.lua",
        "script/?/init.lua"
    ]
}