Add default settings to display Svelte inlay hints (#7943)

Fixes: #7913.

Release Notes:

- Added default settings for Svelte language server to display inlay
hints ([#7913](https://github.com/zed-industries/zed/issues/7913)).
This commit is contained in:
Robin Pfäffle 2024-02-17 10:33:05 +01:00 committed by GitHub
parent 3cbc18895a
commit 43a845cbbf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 83 additions and 1 deletions

View file

@ -91,8 +91,37 @@ impl LspAdapter for SvelteLspAdapter {
}
fn initialization_options(&self) -> Option<serde_json::Value> {
let config = json!({
"inlayHints": {
"parameterNames": {
"enabled": "all",
"suppressWhenArgumentMatchesName": false
},
"parameterTypes": {
"enabled": true
},
"variableTypes": {
"enabled": true,
"suppressWhenTypeMatchesName": false
},
"propertyDeclarationTypes": {
"enabled": true
},
"functionLikeReturnType": {
"enabled": true
},
"enumMemberValues": {
"enabled": true
}
}
});
Some(json!({
"provideFormatter": true
"provideFormatter": true,
"configuration": {
"typescript": config,
"javascript": config
}
}))
}