From 347c22dd5eebe6206f26e2cc1312f383cb011a9b Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 26 Oct 2023 16:11:24 -0400 Subject: fix: add 'unstable' property to config json schema (#20984) --- cli/schemas/config-file.v1.json | 7 +++++++ 1 file changed, 7 insertions(+) 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" + } } } } -- cgit v1.2.3