diff options
Diffstat (limited to '.luarc.json')
-rw-r--r-- | .luarc.json | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.luarc.json b/.luarc.json index 2a2fcd2f..a8f8bbe2 100644 --- a/.luarc.json +++ b/.luarc.json @@ -1,6 +1,5 @@ { "$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json", - "color": { "mode": "SemanticEnhanced" }, @@ -9,7 +8,10 @@ "close-non-object" ], "neededFileStatus": { - "undefined-field": "Any" + "undefined-field": "Any", + "await-in-sync": "Any", + "not-yieldable": "Any", + "discard-returns": "Any" }, "ignoredFiles": "Opened", "libraryFiles": "Opened" @@ -17,10 +19,10 @@ "runtime": { "version": "Lua 5.4", "path": [ - "?.lua", "script/?.lua", "script/?/init.lua" - ] + ], + "pathStrict": true }, "workspace": { "maxPreload": 1600, |