diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-27 22:15:37 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-27 22:15:37 +0800 |
commit | f2800d17cb469ea1442fdc9d7352c6414e5d6bf1 (patch) | |
tree | 236816a6a729b8648bd43230be38fb0824075eac /.luarc.json | |
parent | af9ec1db4516a0977649c0b08e4ed88078724e97 (diff) | |
download | lua-language-server-f2800d17cb469ea1442fdc9d7352c6414e5d6bf1.zip |
support `.luarc.jsonc`
Diffstat (limited to '.luarc.json')
-rw-r--r-- | .luarc.json | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/.luarc.json b/.luarc.json deleted file mode 100644 index 32fa50a7..00000000 --- a/.luarc.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "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" - ] - } -} |