fix: add 'unstable' property to config json schema (#20984)

This commit is contained in:
David Sherret 2023-10-26 16:11:24 -04:00 committed by GitHub
parent 08b99f3909
commit 347c22dd5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
}
}
}
}