mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
Merge #9051
9051: Fix incorrect setting descriptions r=lnicola a=sclu1034 Descriptions for diagnostic warning hint and info display were swapped. Fixes #8485. Co-authored-by: Lucas Schwiderski <lucas@lschwiderski.de>
This commit is contained in:
commit
11a1bd3259
3 changed files with 15 additions and 15 deletions
|
@ -111,15 +111,15 @@ config_data! {
|
|||
/// Map of prefixes to be substituted when parsing diagnostic file paths.
|
||||
/// This should be the reverse mapping of what is passed to `rustc` as `--remap-path-prefix`.
|
||||
diagnostics_remapPrefix: FxHashMap<String, String> = "{}",
|
||||
/// List of warnings that should be displayed with info severity.
|
||||
///
|
||||
/// The warnings will be indicated by a blue squiggly underline in code
|
||||
/// and a blue icon in the `Problems Panel`.
|
||||
diagnostics_warningsAsHint: Vec<String> = "[]",
|
||||
/// List of warnings that should be displayed with hint severity.
|
||||
///
|
||||
/// The warnings will be indicated by faded text or three dots in code
|
||||
/// and will not show up in the `Problems Panel`.
|
||||
diagnostics_warningsAsHint: Vec<String> = "[]",
|
||||
/// List of warnings that should be displayed with info severity.
|
||||
///
|
||||
/// The warnings will be indicated by a blue squiggly underline in code
|
||||
/// and a blue icon in the `Problems Panel`.
|
||||
diagnostics_warningsAsInfo: Vec<String> = "[]",
|
||||
|
||||
/// Controls file watching implementation.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue