|
1 | 1 | [language-server.rust-analyzer.config]
|
2 |
| -inlayHints.chainingHints.enable = true |
3 |
| -inlayHints.bindingModeHints.enable = false |
4 |
| -inlayHints.closingBraceHints.minLines = 20 |
5 |
| -inlayHints.closureCaptureHints.enable = true |
6 |
| -inlayHints.closureReturnTypeHints.enable = "with_block" |
7 |
| -inlayHints.discriminantHints.enable = "fieldless" |
8 |
| -inlayHints.lifetimeElisionHints.enable = "skip_trivial" |
| 2 | +inlayHints.bindingModeHints.enable = false |
| 3 | +inlayHints.chainingHints.enable = true |
| 4 | +inlayHints.closingBraceHints.minLines = 20 |
| 5 | +inlayHints.closureCaptureHints.enable = true |
| 6 | +inlayHints.closureReturnTypeHints.enable = "with_block" |
| 7 | +inlayHints.discriminantHints.enable = "fieldless" |
| 8 | +inlayHints.lifetimeElisionHints.enable = "skip_trivial" |
9 | 9 | inlayHints.typeHints.hideClosureInitialization = false
|
10 | 10 |
|
11 | 11 | completion.autoimport.enable = true
|
12 | 12 | # fill_arguments | add_parentheses | none
|
13 |
| -completion.callable.snippets = "none" |
| 13 | +completion.callable.snippets = "none" |
14 | 14 | completion.fullFunctionSignatures.enable = true
|
15 | 15 |
|
16 |
| -imports.group.enable = true |
17 | 16 | imports.granularity.enforce = true
|
18 |
| -imports.granularity.group = "crate" |
19 |
| -imports.prefix = "crate" |
20 |
| -imports.preferPrelude = false |
| 17 | +imports.granularity.group = "crate" |
| 18 | +imports.group.enable = true |
| 19 | +imports.preferPrelude = false |
| 20 | +imports.prefix = "crate" |
21 | 21 |
|
22 | 22 | lens.enable = false
|
23 | 23 |
|
| 24 | +diagnostics.disabled = ["inactive-code"] |
24 | 25 | hover.actions.enable = false
|
25 | 26 |
|
26 | 27 | [language-server.rust-analyzer.config.cargo]
|
27 | 28 | features = ["introspection", "integration"]
|
28 | 29 |
|
29 | 30 | [language-server.rust-analyzer.config.check]
|
30 |
| -command = "clippy" |
| 31 | +command = "clippy" |
31 | 32 | features = "all"
|
0 commit comments