I recently updated my LSP. After the update, when I had unused variables in my svelte file, I got an error message in my inline diagnostic, and I want to change the message type back to hint because it kind of ignores.

current unused variable message

I want to set it to hint, like this.
I have already tried added these line to my svelte_lsp config, but it did't work.
settings = {
svelte = {
compilerWarnings = {
["unused-variable"] = "hint",
},
},
},
Is there any way to achieve it?