We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 984b46c commit 18c441cCopy full SHA for 18c441c
CONTRIBUTING.md
@@ -154,19 +154,24 @@ to `.vscode/settings.json` in your local Miri clone:
154
155
```json
156
{
157
+ "rust-analyzer.linkedProjects": [
158
+ "./Cargo.toml",
159
+ "./cargo-miri/Cargo.toml"
160
+ ],
161
"rust-analyzer.checkOnSave.overrideCommand": [
162
"./miri",
163
"check",
164
"--message-format=json"
165
],
166
+ "rust-analyzer.buildScripts.overrideCommand": [
167
+ "./miri",
168
+ "check",
169
+ "--message-format=json",
170
171
"rust-analyzer.rustfmt.extraArgs": [
172
"+nightly"
173
174
"rust-analyzer.rustcSource": "discover",
- "rust-analyzer.linkedProjects": [
- "./Cargo.toml",
- "./cargo-miri/Cargo.toml"
- ]
175
}
176
```
177
0 commit comments