diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-11-23 19:55:47 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-11-23 19:55:47 +0800 |
commit | fbbcb96227b0fcad77d2e061cfb95b3871f4bcc7 (patch) | |
tree | f68597c1cc653ab33f765b6192b0b23550ab6c73 /meta | |
parent | d86c2c46e8985da8899ae77d4c6f54f5b902cd71 (diff) | |
download | lua-language-server-fbbcb96227b0fcad77d2e061cfb95b3871f4bcc7.zip |
rename `config` to `settings`
Diffstat (limited to 'meta')
-rw-r--r-- | meta/3rd/Cocos4.0/config.json | 2 | ||||
-rw-r--r-- | meta/3rd/Defold/config.json | 2 | ||||
-rw-r--r-- | meta/3rd/Jass/config.json | 2 | ||||
-rw-r--r-- | meta/3rd/OpenResty/config.json | 2 | ||||
-rw-r--r-- | meta/3rd/busted/config.json | 2 | ||||
-rw-r--r-- | meta/3rd/example/config.json | 2 | ||||
-rw-r--r-- | meta/3rd/lfs/config.json | 2 | ||||
-rw-r--r-- | meta/3rd/love2d/config.json | 2 | ||||
-rw-r--r-- | meta/3rd/lovr/config.json | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/meta/3rd/Cocos4.0/config.json b/meta/3rd/Cocos4.0/config.json index 6330efb7..a967b6ff 100644 --- a/meta/3rd/Cocos4.0/config.json +++ b/meta/3rd/Cocos4.0/config.json @@ -1,7 +1,7 @@ { "name": "Cocos", "files": ["cocos"], - "config": { + "settings": { "Lua.runtime.version": "LuaJIT" } } diff --git a/meta/3rd/Defold/config.json b/meta/3rd/Defold/config.json index 5e0ea371..5ab875d9 100644 --- a/meta/3rd/Defold/config.json +++ b/meta/3rd/Defold/config.json @@ -1,7 +1,7 @@ { "name" : "Defold", "files" : ["game.project", "*%.script", "*%.gui_script"], - "config" : { + "settings" : { "Lua.runtime.version" : "Lua 5.1", "Lua.workspace.library" : [".internal"], "Lua.workspace.ignoreDir" : [".internal"], diff --git a/meta/3rd/Jass/config.json b/meta/3rd/Jass/config.json index 512713f9..1bbb0c7c 100644 --- a/meta/3rd/Jass/config.json +++ b/meta/3rd/Jass/config.json @@ -1,6 +1,6 @@ { "words" : ["jass%.common"], - "config" : { + "settings" : { "Lua.runtime.version": "Lua 5.3" } } diff --git a/meta/3rd/OpenResty/config.json b/meta/3rd/OpenResty/config.json index 91717cc9..39d495fc 100644 --- a/meta/3rd/OpenResty/config.json +++ b/meta/3rd/OpenResty/config.json @@ -10,7 +10,7 @@ "resty%.%w+", "ngx%.%w+" ], - "config" : { + "settings" : { "Lua.runtime.version" : "LuaJIT", "Lua.diagnostics.globals" : [ "ngx" diff --git a/meta/3rd/busted/config.json b/meta/3rd/busted/config.json index e547d0bd..d91b2627 100644 --- a/meta/3rd/busted/config.json +++ b/meta/3rd/busted/config.json @@ -1,5 +1,5 @@ { - "config": { + "settings": { "Lua.workspace.library": [ "${3rd}/luassert/library" ] diff --git a/meta/3rd/example/config.json b/meta/3rd/example/config.json index 415b92b2..79170468 100644 --- a/meta/3rd/example/config.json +++ b/meta/3rd/example/config.json @@ -6,7 +6,7 @@ // list or matched file names. `.lua`, `.dll` and `.so` only "files" : ["thisIsAnExampleFile%.ifItExistsInWorkSpace%.thenTryLoadThisLibrary%.lua"], // lsit of settings to be changed - "config" : { + "settings" : { "Lua.runtime.version" : "LuaJIT", "Lua.diagnostics.globals" : [ "global1", diff --git a/meta/3rd/lfs/config.json b/meta/3rd/lfs/config.json index 3784f0c9..b7400123 100644 --- a/meta/3rd/lfs/config.json +++ b/meta/3rd/lfs/config.json @@ -1,7 +1,7 @@ { "name" : "luafilesystem", "words" : [ "require[%s%(\"']+lfs[%)\"']" ], - "config" : { + "settings" : { "Lua.diagnostics.globals" : [ "lfs" ] diff --git a/meta/3rd/love2d/config.json b/meta/3rd/love2d/config.json index 30862a97..ccb483b3 100644 --- a/meta/3rd/love2d/config.json +++ b/meta/3rd/love2d/config.json @@ -1,7 +1,7 @@ { "name" : "LÖVE", "words" : ["love%.%w+"], - "config" : { + "settings" : { "Lua.runtime.version" : "LuaJIT" } } diff --git a/meta/3rd/lovr/config.json b/meta/3rd/lovr/config.json index d28e6bf9..195c7661 100644 --- a/meta/3rd/lovr/config.json +++ b/meta/3rd/lovr/config.json @@ -1,7 +1,7 @@ { "name" : "LÖVR", "words" : ["lovr%.%w+"], - "config" : { + "settings" : { "Lua.runtime.version" : "LuaJIT" } } |