diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-10-26 16:11:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-26 22:11:24 +0200 |
commit | 347c22dd5eebe6206f26e2cc1312f383cb011a9b (patch) | |
tree | 0513e5c2491cf5e504a65eebdfb4b2fae3217d04 /cli/schemas | |
parent | 08b99f39093ef8f0363bf943ab6719ed0f9d7b21 (diff) |
fix: add 'unstable' property to config json schema (#20984)
Diffstat (limited to 'cli/schemas')
-rw-r--r-- | cli/schemas/config-file.v1.json | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 4b60482e3..12ad5334c 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -529,6 +529,13 @@ "description": "Whether to use a lock file or the path to use for the lock file. Can be overridden by CLI arguments.", "type": ["string", "boolean"], "default": true + }, + "unstable": { + "type": "array", + "description": "List of unstable features to enable.", + "items": { + "type": "string" + } } } } |