embassy/.vscode/settings.json

16 lines
561 B
JSON
Raw Normal View History

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