rust-analyzer check command is check and not checkOnSave (#8054)

Reference: https://rust-analyzer.github.io/manual.html#configuration

Release Notes:

- N/A
This commit is contained in:
Ali Servet Donmez 2024-02-20 13:06:07 +01:00 committed by GitHub
parent fc101c1fb3
commit e9f400a8bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -245,8 +245,8 @@ To override settings for a language, add an entry for that language server's nam
"lsp": {
"rust-analyzer": {
"initialization_options": {
"checkOnSave": {
"command": "clippy" // rust-analyzer.checkOnSave.command
"check": {
"command": "clippy" // rust-analyzer.check.command (default: "check")
}
}
}