diff options
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/settings.json | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 3defc9077..79433a7c9 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json | |||
| @@ -4,16 +4,19 @@ | |||
| 4 | "rust-analyzer.assist.importGranularity": "module", | 4 | "rust-analyzer.assist.importGranularity": "module", |
| 5 | "rust-analyzer.checkOnSave.allFeatures": false, | 5 | "rust-analyzer.checkOnSave.allFeatures": false, |
| 6 | "rust-analyzer.checkOnSave.allTargets": false, | 6 | "rust-analyzer.checkOnSave.allTargets": false, |
| 7 | "rust-analyzer.checkOnSave.command": "clippy", | 7 | "rust-analyzer.checkOnSave.noDefaultFeatures": true, |
| 8 | "rust-analyzer.cargo.allFeatures": false, | ||
| 8 | "rust-analyzer.cargo.noDefaultFeatures": true, | 9 | "rust-analyzer.cargo.noDefaultFeatures": true, |
| 9 | "rust-analyzer.experimental.procAttrMacros": false, | 10 | "rust-analyzer.experimental.procAttrMacros": false, |
| 10 | "rust-analyzer.checkOnSave.noDefaultFeatures": true, | 11 | "rust-analyzer.procMacro.enable": true, |
| 12 | "rust-analyzer.cargo.runBuildScripts": true, | ||
| 11 | "rust-analyzer.cargo.target": "thumbv7em-none-eabi", | 13 | "rust-analyzer.cargo.target": "thumbv7em-none-eabi", |
| 12 | "rust-analyzer.cargo.features": [ | 14 | "rust-analyzer.cargo.features": [ |
| 13 | // These are needed to prevent embassy-net from failing to build | 15 | // These are needed to prevent embassy-net from failing to build |
| 14 | //"embassy-net/medium-ethernet", | 16 | //"embassy-net/medium-ethernet", |
| 15 | //"embassy-net/tcp", | 17 | //"embassy-net/tcp", |
| 16 | //"embassy-net/pool-16", | 18 | //"embassy-net/pool-16", |
| 19 | "nightly", | ||
| 17 | ], | 20 | ], |
| 18 | "rust-analyzer.linkedProjects": [ | 21 | "rust-analyzer.linkedProjects": [ |
| 19 | // Declare for the target you wish to develop | 22 | // Declare for the target you wish to develop |
| @@ -35,12 +38,4 @@ | |||
| 35 | // "examples/stm32wl55/Cargo.toml", | 38 | // "examples/stm32wl55/Cargo.toml", |
| 36 | // "examples/wasm/Cargo.toml", | 39 | // "examples/wasm/Cargo.toml", |
| 37 | ], | 40 | ], |
| 38 | "rust-analyzer.procMacro.enable": true, | ||
| 39 | "rust-analyzer.cargo.runBuildScripts": true, | ||
| 40 | "files.watcherExclude": { | ||
| 41 | "**/.git/objects/**": true, | ||
| 42 | "**/.git/subtree-cache/**": true, | ||
| 43 | "**/target/**": true | ||
| 44 | }, | ||
| 45 | "git.ignoreLimitWarning": true | ||
| 46 | } \ No newline at end of file | 41 | } \ No newline at end of file |
