embassy/.vscode/settings.json

17 lines
494 B
JSON
Raw Normal View History

2022-07-10 17:45:26 +00:00
{
"editor.formatOnSave": true,
"[toml]": {
"editor.formatOnSave": false
},
2022-07-10 17:45:26 +00:00
"rust-analyzer.cargo.target": "thumbv6m-none-eabi",
"rust-analyzer.cargo.noDefaultFeatures": true,
"rust-analyzer.check.allTargets": false,
"rust-analyzer.check.noDefaultFeatures": true,
2022-07-10 17:45:26 +00:00
"rust-analyzer.linkedProjects": [
"examples/rpi-pico-w/Cargo.toml",
],
"rust-analyzer.server.extraEnv": {
"WIFI_NETWORK": "foo",
"WIFI_PASSWORD": "foo",
}
2022-07-10 17:45:26 +00:00
}