-
Notifications
You must be signed in to change notification settings - Fork 0
/
sublime-package.json
224 lines (224 loc) · 7.39 KB
/
sublime-package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
{
"contributions": {
"settings": [
{
"file_patterns": [
"/LSP-astro.sublime-settings"
],
"schema": {
"$id": "sublime://settings/LSP-astro",
"allOf": [
{
"$ref": "sublime://settings/LSP-plugin-base"
},
{
"$ref": "sublime://settings/LSP-astro#/definitions/PluginConfig"
}
],
"definitions": {
"PluginConfig": {
"properties": {
"initializationOptions": {
"additionalProperties": false,
"properties": {
"diagnosticModel": {
"type": "integer",
"default": 2,
"enum": [1, 2],
"enumDescriptions": [
"Diagnostic push by language server.",
"Diagnostic pull by language client."
],
"description": "Diagnostic update model."
},
"typescript.tsdk": {
"type": "string",
"default": "",
"title": "TypeScript: Language Server Path",
"description": "Path to TypeScript language server's lib directory.\nIf empty (default), path is determined automatically.\nTo force Typescript bundled with LSP-astro set $server_directory_path/node_modules/typescript/lib"
}
}
},
"settings": {
"additionalProperties": false,
"properties": {
"astro.typescript.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript",
"description": "Enable TypeScript features"
},
"astro.typescript.allowArbitraryAttributes": {
"type": "boolean",
"default": false,
"title": "TypeScript: Allow arbitrary attributes on HTML elements",
"description": "Enable the usage of non-standard HTML attributes, such as the ones added by AlpineJS or petite-vue"
},
"astro.typescript.diagnostics.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Diagnostics",
"description": "Enable diagnostic messages for TypeScript"
},
"astro.typescript.hover.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Hover Info",
"description": "Enable hover info for TypeScript"
},
"astro.typescript.documentSymbols.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Symbols in Outline",
"description": "Enable document symbols for TypeScript"
},
"astro.typescript.completions.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Completions",
"description": "Enable completions for TypeScript"
},
"astro.typescript.definitions.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Go to Definition",
"description": "Enable go to definition for TypeScript"
},
"astro.typescript.codeActions.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Code Actions",
"description": "Enable code actions for TypeScript"
},
"astro.typescript.signatureHelp.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Signature Help",
"description": "Enable signature help (parameter hints) for TypeScript"
},
"astro.typescript.rename.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Rename",
"description": "Enable rename functionality for JS/TS variables inside Astro files"
},
"astro.typescript.semanticTokens.enabled": {
"type": "boolean",
"default": true,
"title": "TypeScript: Semantic Tokens",
"description": "Enable semantic tokens (used for semantic highlighting) for TypeScript."
},
"astro.html.enabled": {
"type": "boolean",
"default": true,
"title": "HTML",
"description": "Enable HTML features"
},
"astro.html.hover.enabled": {
"type": "boolean",
"default": true,
"title": "HTML: Hover Info",
"description": "Enable hover info for HTML"
},
"astro.html.completions.enabled": {
"type": "boolean",
"default": true,
"title": "HTML: Completions",
"description": "Enable completions for HTML"
},
"astro.html.completions.emmet": {
"type": "boolean",
"default": true,
"title": "HTML: Emmet Completions",
"description": "Enable Emmet completions for HTML"
},
"astro.html.tagComplete.enabled": {
"type": "boolean",
"default": true,
"title": "HTML: Tag Completion",
"description": "Enable tag completion for HTML"
},
"astro.html.documentSymbols.enabled": {
"type": "boolean",
"default": true,
"title": "HTML: Symbols in Outline",
"description": "Enable document symbols for CSS"
},
"astro.css.enabled": {
"type": "boolean",
"default": true,
"title": "CSS",
"description": "Enable CSS features"
},
"astro.css.hover.enabled": {
"type": "boolean",
"default": true,
"title": "CSS: Hover Info",
"description": "Enable hover info for CSS"
},
"astro.css.completions.enabled": {
"type": "boolean",
"default": true,
"title": "CSS: Completions",
"description": "Enable completions for CSS"
},
"astro.css.completions.emmet": {
"type": "boolean",
"default": true,
"title": "CSS: Emmet Completions",
"description": "Enable Emmet completions for CSS"
},
"astro.css.documentColors.enabled": {
"type": "boolean",
"default": true,
"title": "CSS: Document Colors",
"description": "Enable color picker for CSS"
},
"astro.css.documentSymbols.enabled": {
"type": "boolean",
"default": true,
"title": "CSS: Symbols in Outline",
"description": "Enable document symbols for CSS"
},
"astro.format.indentFrontmatter": {
"type": "boolean",
"default": false,
"title": "Formatting: Indent frontmatter",
"description": "Indent the formatter by one level of indentation"
},
"astro.format.newLineAfterFrontmatter": {
"type": "boolean",
"default": true,
"title": "Formatting: Add line return after the frontmatter",
"description": "Add a line return between the frontmatter and the template"
}
}
}
}
}
}
}
},
{
"file_patterns": [
"/*.sublime-project"
],
"schema": {
"properties": {
"settings": {
"properties": {
"LSP": {
"properties": {
"LSP-astro": {
"$ref": "sublime://settings/LSP-astro#/definitions/PluginConfig"
}
}
}
}
}
}
}
}
]
}
}