Skip to content

Commit 0765978

Browse files
committed
Auto merge of #17909 - darichey:remove-discoverProjectRunner, r=lnicola
Remove rust-analyzer.workspace.discoverProjectRunner The functionality for this vscode config option was removed in #17395, so it doesn't do anything anymore.
2 parents 7f77e09 + ac6a3f8 commit 0765978

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

editors/code/package.json

-8
Original file line numberDiff line numberDiff line change
@@ -330,14 +330,6 @@
330330
"default": false,
331331
"type": "boolean"
332332
},
333-
"rust-analyzer.discoverProjectRunner": {
334-
"markdownDescription": "Sets the extension responsible for determining which extension the rust-analyzer extension uses to generate `rust-project.json` files. This should should only be used\n if a build system like Buck or Bazel is also in use.",
335-
"default": null,
336-
"type": [
337-
"null",
338-
"string"
339-
]
340-
},
341333
"rust-analyzer.showUnlinkedFileNotification": {
342334
"markdownDescription": "Whether to show a notification for unlinked files asking the user to add the corresponding Cargo.toml to the linked projects setting.",
343335
"default": true,

editors/code/src/config.ts

-4
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,6 @@ export class Config {
252252
await this.cfg.update("checkOnSave", !(value || false), target || null, overrideInLanguage);
253253
}
254254

255-
get discoverProjectRunner(): string | undefined {
256-
return this.get<string | undefined>("discoverProjectRunner");
257-
}
258-
259255
get problemMatcher(): string[] {
260256
return this.get<string[]>("runnables.problemMatcher") || [];
261257
}

0 commit comments

Comments
 (0)