forked from esp-rs/esp-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert the VS Code workspace file into a standard settings file (esp…
…-rs#830) * Convert the VS Code workspace file into a standard settings file * Add a VS Code extensions file to suggest useful extensions
- Loading branch information
1 parent
df4ec5b
commit 1a23f38
Showing
4 changed files
with
32 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["rust-lang.rust-analyzer", "tamasfe.even-better-toml"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
|
||
"rust-analyzer.cargo.buildScripts.enable": true, | ||
"rust-analyzer.check.allTargets": false, | ||
"rust-analyzer.imports.granularity.enforce": true, | ||
"rust-analyzer.imports.granularity.group": "crate", | ||
"rust-analyzer.procMacro.attributes.enable": true, | ||
"rust-analyzer.procMacro.enable": true, | ||
"rust-analyzer.showUnlinkedFileNotification": false, | ||
|
||
// Uncomment ONE line for the chip you want to work on. | ||
// This makes rust-analyzer work on the HAL crate and all its dependencies. | ||
"rust-analyzer.linkedProjects": [ | ||
"esp32-hal/Cargo.toml" | ||
// "esp32c2-hal/Cargo.toml", | ||
// "esp32c3-hal/Cargo.toml", | ||
// "esp32c6-hal/Cargo.toml", | ||
// "esp32c6-lp-hal/Cargo.toml", | ||
// "esp32h2-hal/Cargo.toml", | ||
// "esp32s2-hal/Cargo.toml", | ||
// "esp32s3-hal/Cargo.toml", | ||
], | ||
|
||
"[toml]": { | ||
"editor.formatOnSave": false | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.