Add VSCode Rust Analyzer Settings

Fixes errors reported by rust analyzer due to differing target and a
missing cargo feature.
pull/165/head
Zicklag 2 years ago committed by Andre Richter
parent 8513ccfd8d
commit cc09970b2d

@ -1,4 +1,10 @@
{
"editor.formatOnSave": true,
"editor.rulers": [100]
"editor.rulers": [100],
"rust-analyzer.cargo.target": "aarch64-unknown-none-softfloat",
"rust-analyzer.cargo.features": ["bsp_rpi3"],
"rust-analyzer.checkOnSave.allTargets": false,
"rust-analyzer.checkOnSave.extraArgs": ["--lib", "--bins"],
"rust-analyzer.lens.debug": false,
"rust-analyzer.lens.run": false
}

Loading…
Cancel
Save