summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 45d0f816fc26021a3ed5bc65a99ad0b70dc1a4fe (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
// Just some comment
{
    "Lua.diagnostics.disable": [
        "close-non-object",
    ],
    "Lua.runtime.version": "Lua 5.4",
    // Just some comment
    "Lua.workspace.maxPreload": 1600,
    "Lua.workspace.preloadFileSize": 1000,
    "Lua.diagnostics.neededFileStatus": {
        "undefined-field": "Any"
    },
    "Lua.workspace.ignoreDir": [
        "locale/",
        "libs/",
        "3rd",
        ".vscode",
        "meta",
    ],
    "Lua.workspace.library": [
        // Just some comment
        "script/meta",
        "bin",
    ],
    "Lua.runtime.path": [
        "?.lua",
        "script/?.lua",
        "script/?/init.lua"
    ],
    "Lua.misc.parameters": [
        "--develop=true",
        "--dbgport=11413",
    ]
}