Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit 9d1243b

Browse files
committed
fix: use markdownDescription instead of description for settings
1 parent b3e093b commit 9d1243b

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,36 +210,35 @@
210210
}
211211
],
212212
"configuration": {
213-
"type": "object",
214213
"title": "Sourcegraph",
215214
"properties": {
216215
"sourcegraph.url": {
217216
"type": [
218217
"string"
219218
],
220219
"default": "https://sourcegraph.com",
221-
"description": "The base URL of the Sourcegraph instance to use."
220+
"markdownDescription": "The base URL of the Sourcegraph instance to use."
222221
},
223222
"sourcegraph.accessToken": {
224223
"type": [
225224
"string"
226225
],
227226
"default": "",
228-
"description": "The access token to query the Sourcegraph API. Create a new access token at https://sourcegraph.com/users/settings/tokens"
227+
"markdownDescription": "The access token to query the Sourcegraph API. Create a new access token at https://sourcegraph.com/users/settings/tokens"
229228
},
230229
"sourcegraph.remoteUrlReplacements": {
231230
"type": [
232231
"object"
233232
],
234233
"default": {},
235-
"description": "For each item in this object, replace key with value in the remote url."
234+
"markdownDescription": "For each item in this object, replace key with value in the remote url."
236235
},
237236
"sourcegraph.defaultBranch": {
238237
"type": [
239238
"string"
240239
],
241240
"default": "",
242-
"description": "Always open files at this default branch."
241+
"markdownDescription": "Always open files at this default branch."
243242
},
244243
"sourcegraph.debug": {
245244
"type": "boolean",

0 commit comments

Comments
 (0)