1
1
{
2
- "name " : " lua " ,
3
- "displayName " : " Lua " ,
4
- "description" : " Lua Language Server coded by Lua " ,
5
- "author " : " sumneko " ,
6
- "icon" : " images/logo.png " ,
7
- "license " : " MIT " ,
8
- "version" : " 0.9.2 " ,
9
- "repository" : {
10
- "type " : " git " ,
11
- "url " : " https://github.com/sumneko/lua-language-server "
12
- } ,
13
- "publisher" : " sumneko " ,
14
- "categories" : [
15
- " Linters " ,
16
- " Programming Languages " ,
17
- " Snippets "
18
- ],
19
- "keywords " : [
20
- " Lua " ,
21
- " LSP " ,
22
- " GoTo Definition " ,
23
- " IntelliSense "
24
- ] ,
25
- "engines " : {
26
- "vscode " : " ^1.23.0 "
27
- } ,
28
- "activationEvents " : [
29
- " onLanguage:lua "
30
- ] ,
31
- "main" : " ./client/out/extension " ,
32
- "contributes " : {
33
- "configuration" : {
34
- "type" : " object " ,
35
- "title" : " Lua " ,
36
- "properties" : {
37
- "Lua .runtime.version" : {
38
- "scope " : " resource " ,
39
- "type " : " string " ,
40
- "default " : " Lua 5.3 " ,
41
- "enum" : [
42
- " Lua 5.1 " ,
43
- " Lua 5.2 " ,
44
- " Lua 5.3 " ,
45
- " Lua 5.4 " ,
46
- " LuaJIT "
47
- ] ,
48
- "description" : " %config.runtime.version% "
49
- } ,
50
- "Lua.runtime.path" : {
51
- "scope" : " resource " ,
52
- "type " : " array " ,
53
- "items " : " string" ,
54
- "description" : " %config.runtime.path% " ,
55
- "default " : [
56
- " ?.lua " ,
57
- " ?/init.lua " ,
58
- " ?/?.lua "
59
- ]
60
- },
61
- "Lua.diagnostics.disable " : {
62
- "scope " : " resource " ,
63
- "type " : " array " ,
64
- "items " : " string " ,
65
- "description " : " %config.diagnostics.disable% "
66
- },
67
- "Lua.diagnostics.globals " : {
68
- "scope " : " resource " ,
69
- "type " : " array " ,
70
- "items " : " string " ,
71
- "description " : " %config.diagnostics.globals% "
72
- },
73
- "Lua.workspace.ignoreDir " : {
74
- "scope " : " resource " ,
75
- "type " : " array " ,
76
- "items " : " string " ,
77
- "description " : " %config.workspace.ignoreDir% "
78
- },
79
- "Lua.workspace.ignoreSubmodules " : {
80
- "scope " : " resource " ,
81
- "type " : " boolean " ,
82
- "default " : true ,
83
- "description " : " %config.workspace.ignoreSubmodules% "
84
- },
85
- "Lua.workspace.useGitIgnore" : {
86
- "scope " : " resource " ,
87
- "type" : " boolean " ,
88
- "default" : true ,
89
- "markdownDescription " : " %config.workspace.useGitIgnore% "
90
- },
91
- "Lua.workspace.maxPreload " : {
92
- "scope " : " resource " ,
93
- "type " : " integer " ,
94
- "default" : 300 ,
95
- "description" : " %config.workspace.maxPreload% "
96
- },
97
- "Lua.workspace.preloadFileSize " : {
98
- "scope " : " resource " ,
99
- "type " : " integer " ,
100
- "default " : 100 ,
101
- "description" : " %config.workspace.preloadFileSize% "
102
- }
103
- }
104
- } ,
105
- "grammars" : [
106
- {
107
- "language" : " lua " ,
108
- "scopeName" : " source.lua " ,
109
- "path " : " syntaxes/lua.tmLanguage.json "
110
- }
111
- ]
112
- } ,
113
- "scripts " : {
114
- "vscode:prepublish" : " cd client && npm run update-vscode && cd .. "
115
- },
116
- "__metadata" : {
117
- "id " : " 3a15b5a7-be12-47e3-8445-88ee3eabc8b2 " ,
118
- "publisherDisplayName " : " sumneko " ,
119
- "publisherId" : " fb626675-24cf-4881-8c13-b465f29bec2f "
120
- }
121
- }
2
+ "__metadata " : {
3
+ "id " : " 3a15b5a7-be12-47e3-8445-88ee3eabc8b2 " ,
4
+ "publisherDisplayName" : " sumneko " ,
5
+ "publisherId " : " fb626675-24cf-4881-8c13-b465f29bec2f "
6
+ } ,
7
+ "activationEvents " : [
8
+ " onLanguage:lua "
9
+ ],
10
+ "author " : " sumneko " ,
11
+ "categories " : [
12
+ " Linters " ,
13
+ " Programming Languages " ,
14
+ " Snippets "
15
+ ] ,
16
+ "contributes" : {
17
+ "configuration" : {
18
+ "properties" : {
19
+ "Lua.diagnostics.disable " : {
20
+ "description" : " %config.diagnostics.disable% " ,
21
+ "items" : " string " ,
22
+ "scope" : " resource " ,
23
+ "type" : " array "
24
+ } ,
25
+ "Lua.diagnostics.globals " : {
26
+ "description " : " %config.diagnostics.globals% " ,
27
+ "items" : " string " ,
28
+ "scope " : " resource " ,
29
+ "type" : " array "
30
+ } ,
31
+ "Lua.runtime.path" : {
32
+ "default " : [
33
+ " ?.lua " ,
34
+ " ?/init.lua " ,
35
+ " ?/?.lua "
36
+ ],
37
+ "description" : " %config .runtime.path% " ,
38
+ "items " : " string " ,
39
+ "scope " : " resource " ,
40
+ "type " : " array "
41
+ },
42
+ "Lua.runtime.version" : {
43
+ "default" : " Lua 5.3 " ,
44
+ "description" : " %config.runtime.version% " ,
45
+ "enum" : [
46
+ " Lua 5.1 " ,
47
+ " Lua 5.2 " ,
48
+ " Lua 5.3 " ,
49
+ " Lua 5.4 " ,
50
+ " LuaJIT "
51
+ ] ,
52
+ "scope " : " resource " ,
53
+ "type " : " string"
54
+ } ,
55
+ "Lua.workspace.ignoreDir " : {
56
+ "description" : " %config.workspace.ignoreDir% " ,
57
+ "items" : " string " ,
58
+ "scope" : " resource " ,
59
+ "type" : " array "
60
+ },
61
+ "Lua.workspace.ignoreSubmodules " : {
62
+ "default " : true ,
63
+ "description " : " %config.workspace.ignoreSubmodules% " ,
64
+ "scope " : " resource " ,
65
+ "type " : " boolean "
66
+ },
67
+ "Lua.workspace.maxPreload " : {
68
+ "default " : 300 ,
69
+ "description " : " %config.workspace.maxPreload% " ,
70
+ "scope " : " resource " ,
71
+ "type " : " integer "
72
+ },
73
+ "Lua.workspace.preloadFileSize " : {
74
+ "default " : 100 ,
75
+ "description " : " %config.workspace.preloadFileSize% " ,
76
+ "scope " : " resource " ,
77
+ "type " : " integer "
78
+ },
79
+ "Lua.workspace.useGitIgnore " : {
80
+ "default " : true ,
81
+ "markdownDescription " : " %config.workspace.useGitIgnore% " ,
82
+ "scope " : " resource " ,
83
+ "type " : " boolean "
84
+ }
85
+ },
86
+ "title " : " Lua " ,
87
+ "type" : " object "
88
+ } ,
89
+ "grammars " : [
90
+ {
91
+ "language " : " lua " ,
92
+ "path " : " syntaxes/lua.tmLanguage.json " ,
93
+ "scopeName " : " source.lua "
94
+ }
95
+ ]
96
+ },
97
+ "description " : " Lua Language Server coded by Lua " ,
98
+ "displayName " : " Lua " ,
99
+ "engines " : {
100
+ "vscode " : " ^1.23.0 "
101
+ },
102
+ "icon" : " images/logo.png " ,
103
+ "keywords" : [
104
+ " Lua " ,
105
+ " LSP " ,
106
+ " GoTo Definition " ,
107
+ " IntelliSense "
108
+ ] ,
109
+ "license " : " MIT " ,
110
+ "main" : " ./client/out/extension " ,
111
+ "name" : " lua " ,
112
+ "publisher" : " sumneko " ,
113
+ "repository " : {
114
+ "type" : " git " ,
115
+ "url" : " https://github.com/sumneko/lua-language-server "
116
+ },
117
+ "scripts " : {
118
+ "vscode:prepublish " : " cd client && npm run update-vscode && cd .. "
119
+ },
120
+ "version" : " 0.9.2 "
121
+ }
0 commit comments