Skip to content

Commit e6c5e30

Browse files
committed
feat: update vscode config to follow Tracker conventions
1 parent 90f217e commit e6c5e30

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.vscode/extensions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"streetsidesoftware.code-spell-checker",
4+
"rust-lang.rust-analyzer"
5+
]
6+
}

.vscode/settings.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
2-
"[rust]": {
3-
"editor.formatOnSave": true
4-
},
5-
"rust-analyzer.checkOnSave.command": "clippy",
6-
}
2+
"[rust]": {
3+
"editor.formatOnSave": true
4+
},
5+
"rust-analyzer.checkOnSave.command": "clippy",
6+
"rust-analyzer.checkOnSave.allTargets": true,
7+
"rust-analyzer.checkOnSave.extraArgs": ["--", "-W", "clippy::pedantic"]
8+
}

0 commit comments

Comments
 (0)