From c27b6b06074a7a58dd7a6e9f712f4ad636ce2139 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Thu, 30 Jan 2020 15:47:54 +0100 Subject: [PATCH] Allow trailing comma (microsoft/vscode-remote-release#2231) --- .../configuration-editing/schemas/attachContainer.schema.json | 1 + .../configuration-editing/schemas/devContainer.schema.json | 1 + 2 files changed, 2 insertions(+) diff --git a/extensions/configuration-editing/schemas/attachContainer.schema.json b/extensions/configuration-editing/schemas/attachContainer.schema.json index 58e59d72ee0..015e32e8018 100644 --- a/extensions/configuration-editing/schemas/attachContainer.schema.json +++ b/extensions/configuration-editing/schemas/attachContainer.schema.json @@ -2,6 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema#", "description": "Configures an attached to container", "allowComments": true, + "allowTrailingCommas": true, "type": "object", "definitions": { "attachContainer": { diff --git a/extensions/configuration-editing/schemas/devContainer.schema.json b/extensions/configuration-editing/schemas/devContainer.schema.json index 292fe629937..b1ed32ab9f2 100644 --- a/extensions/configuration-editing/schemas/devContainer.schema.json +++ b/extensions/configuration-editing/schemas/devContainer.schema.json @@ -2,6 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema#", "description": "Defines a dev container", "allowComments": true, + "allowTrailingCommas": true, "type": "object", "definitions": { "devContainerCommon": { -- GitLab