I have a couple targeted allow
s, which per https://rust-analyzer.github.io/manual.html#diagnostics R-A doesn't respect yet.
Can someone tell me how to disable a single diagnostic using the mentioned rust-analyzer.diagnostics.disabled
? I tried updating my settings like this, with no luck:
"settings":
{
"LSP":
{
"rust-analyzer":
{
"enabled": true,
"diagnostics.disabled": ["incorrect-ident-case"]
}
}
}
(I'm in sublime text.)