summaryrefslogtreecommitdiff
path: root/cli/schemas
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-10-26 16:11:24 -0400
committerGitHub <noreply@github.com>2023-10-26 22:11:24 +0200
commit347c22dd5eebe6206f26e2cc1312f383cb011a9b (patch)
tree0513e5c2491cf5e504a65eebdfb4b2fae3217d04 /cli/schemas
parent08b99f39093ef8f0363bf943ab6719ed0f9d7b21 (diff)
fix: add 'unstable' property to config json schema (#20984)
Diffstat (limited to 'cli/schemas')
-rw-r--r--cli/schemas/config-file.v1.json7
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"
+ }
}
}
}