Auto merge of #14112 - Veykril:vscode-untrusted, r=lnicola

minor: Explicitly disable the rust-analyzer extension in untrusted workspaces

This is the default, but its always better to be explicit here + we can add a small note as to why.
This commit is contained in:
bors 2023-02-09 18:46:11 +00:00
commit c468e39b5a

View file

@ -19,6 +19,12 @@
"categories": [
"Programming Languages"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": false,
"description": "rust-analyzer invokes binaries set up by its configuration as well as the Rust toolchain's binaries. A malicious actor could exploit this to run arbitrary code on your machine."
}
},
"engines": {
"vscode": "^1.66.0"
},