esp-hal/esp-hal-common/.vscode/settings.json
2022-07-07 18:39:11 +02:00

23 lines
604 B
JSON

{
"rust-analyzer.cargo.features": [
"esp32c3"
],
"rust-analyzer.cargo.allFeatures": false,
"editor.formatOnSave": true,
"rust-analyzer.checkOnSave.allTargets": true,
"rust-analyzer.checkOnSave.allFeatures": false,
"rust-analyzer.checkOnSave.overrideCommand": [
"cargo",
"check",
"--features",
"esp32c3",
"--message-format=json",
"-Z",
"build-std=core",
"--target",
"riscv32imc-unknown-none-elf",
"--examples",
"--lib",
],
"rust-analyzer.cargo.buildScripts.enable": false
}