Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -330,14 +330,6 @@
"default": false,
"type": "boolean"
},
"rust-analyzer.discoverProjectRunner": {
"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.",
"default": null,
"type": [
"null",
"string"
]
},
"rust-analyzer.showUnlinkedFileNotification": {
"markdownDescription": "Whether to show a notification for unlinked files asking the user to add the corresponding Cargo.toml to the linked projects setting.",
"default": true,
Expand Down
4 changes: 0 additions & 4 deletions editors/code/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,6 @@ export class Config {
await this.cfg.update("checkOnSave", !(value || false), target || null, overrideInLanguage);
}

get discoverProjectRunner(): string | undefined {
return this.get<string | undefined>("discoverProjectRunner");
}

get problemMatcher(): string[] {
return this.get<string[]>("runnables.problemMatcher") || [];
}
Expand Down