embassy/.vscode/settings.json

17 lines
608 B
JSON
Raw Normal View History

2020-09-22 18:03:43 +02:00
{
"rust-analyzer.assist.importMergeBehavior": "last",
2020-09-22 18:03:43 +02:00
"editor.formatOnSave": true,
2021-03-21 05:49:49 +01:00
"rust.target": "thumbv7em-none-eabihf",
2020-09-22 18:03:43 +02:00
"rust-analyzer.cargo.allFeatures": false,
"rust-analyzer.checkOnSave.allFeatures": false,
"rust-analyzer.checkOnSave.allTargets": false,
2021-03-29 04:11:32 +02:00
"rust-analyzer.cargo.target": "thumbv6m-none-eabi",
"rust-analyzer.checkOnSave.target": "thumbv6m-none-eabi",
2021-02-20 00:27:34 +01:00
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.cargo.loadOutDirsFromCheck": true,
2020-09-22 18:03:43 +02:00
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/target/**": true
}
}