No additional properties (fixes microsoft/vscode-remote-release#2222)

This commit is contained in:
Christof Marti 2020-01-29 11:53:39 +01:00
parent 18b404fb24
commit f643cad6e3
2 changed files with 8 additions and 0 deletions

View file

@ -3,9 +3,11 @@
"description": "Configures an attached to container",
"allowComments": true,
"type": "object",
"additionalProperties": false,
"definitions": {
"attachContainer": {
"type": "object",
"additionalProperties": false,
"properties": {
"workspaceFolder": {
"type": "string",

View file

@ -3,9 +3,11 @@
"description": "Defines a dev container",
"allowComments": true,
"type": "object",
"additionalProperties": false,
"definitions": {
"devContainerCommon": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
@ -63,6 +65,7 @@
},
"nonComposeBase": {
"type": "object",
"additionalProperties": false,
"properties": {
"appPort": {
"type": [
@ -131,6 +134,7 @@
},
"dockerFileContainer": {
"type": "object",
"additionalProperties": false,
"properties": {
"dockerFile": {
"type": "string",
@ -147,6 +151,7 @@
},
"imageContainer": {
"type": "object",
"additionalProperties": false,
"properties": {
"image": {
"type": "string",
@ -159,6 +164,7 @@
},
"composeContainer": {
"type": "object",
"additionalProperties": false,
"properties": {
"dockerComposeFile": {
"type": [