summaryrefslogtreecommitdiff
path: root/.luarc.json
blob: 32fa50a71b7ad474af428fe2eb742cec0807c29c (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
{
    "diagnostics": {
        "disable": [
            "close-non-object"
        ],
        "neededFileStatus": {
            "undefined-field": "Any",
            "await-in-sync": "Any",
            "not-yieldable": "Any",
            "discard-returns": "Any",
            "redundant-parameter": "Any",
            "missing-parameter": "Any",
            "need-check-nil": "Any",
            "redundant-value": "Any",
            "deprecated": "Any"
        },
        "ignoredFiles": "Opened",
        "libraryFiles": "Opened"
    },
    "runtime": {
        "version": "Lua 5.4",
        "path": [
            "script/?.lua",
            "script/?/init.lua",
            "test/?.lua",
            "test/?/init.lua"
        ],
        "pathStrict": true
    },
    "workspace": {
        "maxPreload": 1600,
        "preloadFileSize": 1000,
        "ignoreDir": [
            "locale/",
            "libs/",
            "3rd",
            ".vscode",
            "meta"
        ],
        "library": [
            "script/meta",
            "bin"
        ]
    }
}