Skip to content

Commit

Permalink
vscode: ignore target_wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed May 22, 2023
1 parent 6a80e6f commit a1d0e29
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
}
},
"files.exclude": {
"target/**": true,
"target_ra/**": true,
"target_wasm/**": true,
"target/**": true,
},
// Tell Rust Analyzer to use its own target directory, so we don't need to wait for it to finish wen we want to `cargo run`
"rust-analyzer.check.overrideCommand": [
Expand All @@ -18,7 +19,7 @@
"--target-dir=target_ra",
"--workspace",
"--message-format=json",
"--all-targets"
"--all-targets",
],
"rust-analyzer.cargo.buildScripts.overrideCommand": [
"cargo",
Expand All @@ -27,6 +28,6 @@
"--target-dir=target_ra",
"--workspace",
"--message-format=json",
"--all-targets"
"--all-targets",
],
}

0 comments on commit a1d0e29

Please sign in to comment.