summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 97694867c95caf7ef11d044cd9521e3d06b23407 (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
// Just some comment
{
    "Lua.diagnostics.globals": [ // Just some comment
        // Just some comment
        "ERR",
        "OUT",
        "IN",
        // Just some comment
        "log",
        "ac",
        "_G",
        "GC",
        "ID",
        "DEVELOP",
        "DBGPORT",
        "DBGWAIT"
    ],
    "Lua.diagnostics.disable": [
    ],
    "Lua.runtime.version": "Lua 5.4",
    // Just some comment
    "Lua.workspace.maxPreload": 600,
    "Lua.workspace.preloadFileSize": 1000,
    "Lua.workspace.ignoreDir": [
        "locale/",
        "libs/",
        "3rd",
        ".vscode",
        "script",
    ],
    "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
}