Remove repo-level VS Code settings, ignore settings files moving forward (#1223)

This commit is contained in:
Jesse Braham 2024-02-28 16:21:01 +00:00 committed by GitHub
parent 12176dbfff
commit 043baa7c4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 35 deletions

3
.gitignore vendored
View File

@ -16,3 +16,6 @@ Cargo.lock
# Wokwi related files
diagram.json
wokwi.toml
# We'll ignore VS Code settings (at least for now...)
**/.vscode/settings.json

35
.vscode/settings.json vendored
View File

@ -1,35 +0,0 @@
{
"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": [
// "esp-lp-hal/Cargo.toml"
"esp32-hal/Cargo.toml"
// "esp32c2-hal/Cargo.toml"
// "esp32c3-hal/Cargo.toml"
// "esp32c6-hal/Cargo.toml"
// "esp32h2-hal/Cargo.toml"
// "esp32p4-hal/Cargo.toml"
// "esp32s2-hal/Cargo.toml"
// "esp32s3-hal/Cargo.toml"
],
"[toml]": {
"editor.formatOnSave": false,
},
"[markdown]": {
"editor.formatOnSave": false,
},
"[jsonc]": {
"editor.formatOnSave": false,
}
}