File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -154,19 +154,24 @@ to `.vscode/settings.json` in your local Miri clone:
154
154
155
155
``` json
156
156
{
157
+ "rust-analyzer.rustc.source" : " discover" ,
158
+ "rust-analyzer.linkedProjects" : [
159
+ " ./Cargo.toml" ,
160
+ " ./cargo-miri/Cargo.toml"
161
+ ],
157
162
"rust-analyzer.checkOnSave.overrideCommand" : [
158
163
" ./miri" ,
159
164
" check" ,
160
165
" --message-format=json"
161
166
],
167
+ "rust-analyzer.buildScripts.overrideCommand" : [
168
+ " ./miri" ,
169
+ " check" ,
170
+ " --message-format=json" ,
171
+ ],
162
172
"rust-analyzer.rustfmt.extraArgs" : [
163
173
" +nightly"
164
174
],
165
- "rust-analyzer.rustcSource" : " discover" ,
166
- "rust-analyzer.linkedProjects" : [
167
- " ./Cargo.toml" ,
168
- " ./cargo-miri/Cargo.toml"
169
- ]
170
175
}
171
176
```
172
177
You can’t perform that action at this time.
0 commit comments