contrib: Set our check command to check instead of clippy

Clippy is a bit too heavy to be used as the check on save command in
this repo.

Let's set a better default.
This commit is contained in:
Damir Jelić
2025-07-22 15:07:13 +02:00
parent 4931c0749e
commit bcb4ab4b10

View File

@@ -1,4 +1,4 @@
{
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.checkOnSave.command": "check",
"rust-analyzer.rustfmt.extraArgs": ["+nightly"]
}