mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
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:
parent
2ebc1530f5
commit
5fbc46d0f3
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue