embassy/.vscode/settings.json

30 lines
1.1 KiB
JSON
Raw Normal View History

2020-09-22 16:03:43 +00:00
{
"editor.formatOnSave": true,
2021-07-15 03:43:06 +00:00
"rust-analyzer.assist.importEnforceGranularity": true,
"rust-analyzer.assist.importGranularity": "module",
2021-05-02 00:19:14 +00:00
"rust-analyzer.checkOnSave.allFeatures": false,
"rust-analyzer.checkOnSave.allTargets": false,
2021-10-17 22:55:43 +00:00
"rust-analyzer.checkOnSave.command": "clippy",
2021-07-15 03:43:06 +00:00
"rust-analyzer.cargo.noDefaultFeatures": true,
"rust-analyzer.experimental.procAttrMacros": false,
2021-07-15 03:43:06 +00:00
"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
2021-11-27 01:21:53 +00:00
//"embassy-net/medium-ethernet",
//"embassy-net/tcp",
//"embassy-net/pool-16",
],
"rust-analyzer.linkedProjects": [
// Declare for the target you wish to develop
"examples/nrf/Cargo.toml"
],
2021-05-02 00:19:14 +00:00
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.cargo.runBuildScripts": true,
2021-05-02 00:19:14 +00:00
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
2021-05-14 02:06:07 +00:00
"**/target/**": true
2021-06-25 01:38:03 +00:00
},
"git.ignoreLimitWarning": true
}