Skip to content

Commit d28a4da

Browse files
authored
8249: Remove trailing commas in profiles.schema.json (#8257)
Fixes https parsing of the latest version of `profiles.schema.json`, particularly by VS Code Intellisense. * [x] Closes #8249 The VS Code parsing warning below is a known and unrelated existing issue due to VS Code only supporting JSON Schema Draft 7. It does not prevent Intellisense from functioning. > Draft 2019-09 schemas are not yet fully supported. ## Validation Steps Performed Manually tested and successfully validated by fixing a local copy of `profiles.schema.json` and defining it as `$schema` in `settings.json`
1 parent d4b6355 commit d28a4da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/cascadia/profiles.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@
694694
"enum": [
695695
"mru",
696696
"inOrder",
697-
"disabled",
697+
"disabled"
698698
],
699699
"type": "string"
700700
}
@@ -712,7 +712,7 @@
712712
"enum": [
713713
"mru",
714714
"inOrder",
715-
"disabled",
715+
"disabled"
716716
],
717717
"type": "string"
718718
}

0 commit comments

Comments
 (0)