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