chore: Add vscode config to use clippy on save

This commit is contained in:
Michael Aaron Murphy 2022-12-23 15:10:51 +01:00
parent dcbde3b1f2
commit a39a2518d0
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

4
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,4 @@
{
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.checkOnSave.extraArgs": ["--", "-W", "clippy::pedantic"],
}