Skip to content

Commit bfd274a

Browse files
authored
Merge pull request microsoft#77546 from microsoft/pine/builtin-array-setting
Use array of string for applicable builtin settings
2 parents 78de125 + d44f9da commit bfd274a

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

extensions/git/package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,12 +1246,18 @@
12461246
},
12471247
"git.ignoredRepositories": {
12481248
"type": "array",
1249+
"items": {
1250+
"type": "string"
1251+
},
12491252
"default": [],
12501253
"scope": "window",
12511254
"description": "%config.ignoredRepositories%"
12521255
},
12531256
"git.scanRepositories": {
12541257
"type": "array",
1258+
"items": {
1259+
"type": "string"
1260+
},
12551261
"default": [],
12561262
"scope": "resource",
12571263
"description": "%config.scanRepositories%"

extensions/markdown-language-features/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"description": "%description%",
55
"version": "1.0.0",
66
"icon": "icon.png",
7-
"publisher": "vscode",
8-
"enableProposedApi": true,
7+
"publisher": "vscode",
8+
"enableProposedApi": true,
99
"license": "MIT",
1010
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
1111
"engines": {
@@ -187,6 +187,9 @@
187187
"properties": {
188188
"markdown.styles": {
189189
"type": "array",
190+
"items": {
191+
"type": "string"
192+
},
190193
"default": [],
191194
"description": "%markdown.styles.dec%",
192195
"scope": "resource"

0 commit comments

Comments
 (0)