embassy/.vscode/settings.json

25 lines
897 B
JSON
Raw Normal View History

2020-09-22 18:03:43 +02:00
{
"editor.formatOnSave": true,
2021-07-15 05:43:06 +02:00
"rust-analyzer.assist.importEnforceGranularity": true,
"rust-analyzer.assist.importGranularity": "module",
2021-05-02 02:19:14 +02:00
"rust-analyzer.checkOnSave.allFeatures": false,
"rust-analyzer.checkOnSave.allTargets": false,
2021-10-18 00:55:43 +02:00
"rust-analyzer.checkOnSave.command": "clippy",
2021-07-15 05:43:06 +02:00
"rust-analyzer.cargo.noDefaultFeatures": true,
"rust-analyzer.checkOnSave.noDefaultFeatures": true,
"rust-analyzer.cargo.target": "thumbv7em-none-eabi",
"rust-analyzer.cargo.features": [
// These are needed to prevent embassy-net from failing to build
"embassy-net/medium-ethernet",
2021-07-15 05:43:06 +02:00
"embassy-net/tcp",
"embassy-net/pool-16",
],
2021-05-02 02:19:14 +02:00
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.cargo.runBuildScripts": true,
2021-05-02 02:19:14 +02:00
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
2021-05-14 04:06:07 +02:00
"**/target/**": true
2021-06-25 03:38:03 +02:00
},
"git.ignoreLimitWarning": true
}