chore: move vscode local out of experiments (#5773)

We've been dogfooding the VS Code extension for a while,
and it seems stable enough that it's overall positive
to release!
This commit is contained in:
Kyle Carberry
2023-01-19 22:32:59 -06:00
committed by GitHub
parent b91b4533d8
commit 546a8931aa
10 changed files with 20 additions and 56 deletions

View File

@ -9,9 +9,8 @@ import (
type Experiment string
const (
// ExperimentVSCodeLocal enables a workspace button to launch VSCode
// and connect using the local VSCode extension.
ExperimentVSCodeLocal Experiment = "vscode_local"
// Add new experiments here!
// ExperimentExample Experiment = "example"
)
var (
@ -19,9 +18,7 @@ var (
// users to opt-in to via --experimental='*'.
// Experiments that are not ready for consumption by all users should
// not be included here and will be essentially hidden.
ExperimentsAll = Experiments{
ExperimentVSCodeLocal,
}
ExperimentsAll = Experiments{}
)
// Experiments is a list of experiments that are enabled for the deployment.