Disallow trailing commas in devcontainer files

Align the JSON Schema spec with JSONC, which allows JS-style comments but does not allow trailing commas.

https://github.com/microsoft/dev-container-spec/pull/24
This commit is contained in:
Greggory Rothmeier 2022-04-06 14:48:18 -07:00 committed by Christof Marti
parent 2ebc1530f5
commit 5fbc46d0f3

View file

@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Defines a dev container",
"allowComments": true,
"allowTrailingCommas": true,
"allowTrailingCommas": false,
"definitions": {
"devContainerCommon": {
"type": "object",