Skip to content

Commit 9be9308

Browse files
authored
fix: tag non-stable settings with new system (#24287)
This PR changes some setting tags as follows: - Remove the experimental tag from the `python.missingPackage.severity` setting considering the setting does not seem to be experimental and that the setting does not seem to be part of any experiment. - Add the onExP tag onto the `python.locator` setting considering the setting is both experimental (based on its description) and part of an experiment. - Change the experimental tag to preview for `python.terminal.shellIntegration.enabled`, considering it is a non-stable setting that does not seem to be part of an experiment. - Add the onExP tag to `python.REPL.sendToNativeREPL` considering it is part of an experiment.
1 parent 041be0d commit 9be9308

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -582,10 +582,7 @@
582582
"Warning"
583583
],
584584
"scope": "resource",
585-
"type": "string",
586-
"tags": [
587-
"experimental"
588-
]
585+
"type": "string"
589586
},
590587
"python.locator": {
591588
"default": "js",
@@ -595,7 +592,8 @@
595592
"native"
596593
],
597594
"tags": [
598-
"experimental"
595+
"experimental",
596+
"onExP"
599597
],
600598
"scope": "machine",
601599
"type": "string"
@@ -662,7 +660,7 @@
662660
"scope": "resource",
663661
"type": "boolean",
664662
"tags": [
665-
"experimental"
663+
"preview"
666664
]
667665
},
668666
"python.REPL.enableREPLSmartSend": {
@@ -677,7 +675,8 @@
677675
"scope": "resource",
678676
"type": "boolean",
679677
"tags": [
680-
"experimental"
678+
"experimental",
679+
"onExP"
681680
]
682681
},
683682
"python.REPL.provideVariables": {

package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"python.diagnostics.sourceMapsEnabled.description": "Enable source map support for meaningful stack traces in error logs.",
3737
"python.envFile.description": "Absolute path to a file containing environment variable definitions.",
3838
"python.experiments.enabled.description": "Enables A/B tests experiments in the Python extension. If enabled, you may get included in proposed enhancements and/or features.",
39-
"python.experiments.optInto.description": "List of experiment to opt into. If empty, user is assigned the default experiment groups. See [here](https://github.com/microsoft/vscode-python/wiki/AB-Experiments) for more details.",
40-
"python.experiments.optOutFrom.description": "List of experiment to opt out of. If empty, user is assigned the default experiment groups. See [here](https://github.com/microsoft/vscode-python/wiki/AB-Experiments) for more details.",
39+
"python.experiments.optInto.description": "List of experiments to opt into. If empty, user is assigned the default experiment groups. See [here](https://github.com/microsoft/vscode-python/wiki/AB-Experiments) for more details.",
40+
"python.experiments.optOutFrom.description": "List of experiments to opt out of. If empty, user is assigned the default experiment groups. See [here](https://github.com/microsoft/vscode-python/wiki/AB-Experiments) for more details.",
4141
"python.experiments.All.description": "Combined list of all experiments.",
4242
"python.experiments.pythonSurveyNotification.description": "Denotes the Python Survey Notification experiment.",
4343
"python.experiments.pythonPromptNewToolsExt.description": "Denotes the Python Prompt New Tools Extension experiment.",

0 commit comments

Comments
 (0)