summaryrefslogtreecommitdiff
path: root/.luarc.json
blob: a8f8bbe24cdf3b824bd52e2f8a6464facbacea9a (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
{
    "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
    "color": {
        "mode": "SemanticEnhanced"
    },
    "diagnostics": {
        "disable": [
            "close-non-object"
        ],
        "neededFileStatus": {
            "undefined-field": "Any",
            "await-in-sync": "Any",
            "not-yieldable": "Any",
            "discard-returns": "Any"
        },
        "ignoredFiles": "Opened",
        "libraryFiles": "Opened"
    },
    "runtime": {
        "version": "Lua 5.4",
        "path": [
            "script/?.lua",
            "script/?/init.lua"
        ],
        "pathStrict": true
    },
    "workspace": {
        "maxPreload": 1600,
        "preloadFileSize": 1000,
        "ignoreDir": [
            "locale/",
            "libs/",
            "3rd",
            ".vscode",
            "meta"
        ],
        "library": [
            "script/meta",
            "bin"
        ]
    },
    "hint": {
        "enable": true
    }
}