diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-10-15 15:34:05 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-10-15 15:34:20 +0800 |
commit | c2fa4723d251614eee6126fd467fa4a94870a11a (patch) | |
tree | 752afb1fe982c4129f0baaceb18415bf4df97289 /.luarc.json | |
parent | e49612e4c4ca71f811c3fb589e7e7acbbeb049fc (diff) | |
download | lua-language-server-c2fa4723d251614eee6126fd467fa4a94870a11a.zip |
setting head `Lua.` can be omitted
Diffstat (limited to '.luarc.json')
-rw-r--r-- | .luarc.json | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.luarc.json b/.luarc.json index 453a7d17..4068d6ef 100644 --- a/.luarc.json +++ b/.luarc.json @@ -1,25 +1,25 @@ { - "Lua.diagnostics.disable": [ + "diagnostics.disable": [ "close-non-object" ], - "Lua.runtime.version": "Lua 5.4", - "Lua.workspace.maxPreload": 1600, - "Lua.workspace.preloadFileSize": 1000, - "Lua.diagnostics.neededFileStatus": { + "runtime.version": "Lua 5.4", + "workspace.maxPreload": 1600, + "workspace.preloadFileSize": 1000, + "diagnostics.neededFileStatus": { "undefined-field": "Any" }, - "Lua.workspace.ignoreDir": [ + "workspace.ignoreDir": [ "locale/", "libs/", "3rd", ".vscode", "meta" ], - "Lua.workspace.library": [ + "workspace.library": [ "script/meta", "bin" ], - "Lua.runtime.path": [ + "runtime.path": [ "?.lua", "script/?.lua", "script/?/init.lua" |