embassy/.vscode/settings.json

15 lines
524 B
JSON
Raw Normal View History

2020-09-22 16:03:43 +00:00
{
2021-05-14 02:06:07 +00:00
"rust-analyzer.assist.importMergeBehavior": "last",
2020-09-22 16:03:43 +00:00
"editor.formatOnSave": true,
2021-05-02 00:19:14 +00:00
"rust-analyzer.checkOnSave.allFeatures": false,
"rust-analyzer.checkOnSave.allTargets": false,
2021-05-14 02:06:07 +00:00
"rust-analyzer.cargo.target": "thumbv7em-none-eabi",
"rust-analyzer.checkOnSave.target": "thumbv7em-none-eabi",
2021-05-02 00:19:14 +00:00
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.cargo.loadOutDirsFromCheck": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
2021-05-14 02:06:07 +00:00
"**/target/**": true
2021-05-02 00:19:14 +00:00
}
}