Skip to content

Commit 3d5bfd8

Browse files
rchldatho7561
authored andcommitted
Fix default value of two extension settings
The type of those properties is boolean so the default should be literal boolean and not a string.
1 parent d5e38e5 commit 3d5bfd8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,12 @@
267267
},
268268
"yaml.extension.recommendations": {
269269
"type": "boolean",
270-
"default": "true",
270+
"default": true,
271271
"description": "Suggest additional extensions based on YAML usage."
272272
},
273273
"yaml.hoverSchemaSource": {
274274
"type": "boolean",
275-
"default": "true",
275+
"default": true,
276276
"description": "Enable/disable showing the schema source in hover tooltips"
277277
}
278278
}

0 commit comments

Comments
 (0)