Add a configuration option for the vscode extension

This commit is contained in:
Igor Aleksanov 2020-08-12 16:06:55 +03:00
parent ae0b2477fe
commit 13f736d4a1

View file

@ -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": []
}
}
},