mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Add a configuration option for the vscode extension
This commit is contained in:
parent
ae0b2477fe
commit
13f736d4a1
1 changed files with 10 additions and 1 deletions
|
@ -609,6 +609,15 @@
|
|||
},
|
||||
"description": "List of warnings warnings that should be displayed with hint severity.\nThe warnings will be indicated by faded text or three dots in code and will not show up in the problems panel.",
|
||||
"default": []
|
||||
},
|
||||
"rust-analyzer.analysis.disabledDiagnostics": {
|
||||
"type": "array",
|
||||
"uniqueItems": true,
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": "List of rust-analyzer diagnostics to disable",
|
||||
"default": []
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue