fix(tsgo): remove some noisy inlay hints

This commit is contained in:
Folke Lemaitre 2026-04-02 10:08:02 +02:00
parent 85afbbc94b
commit d07070bf2f
No known key found for this signature in database
GPG key ID: 9B52594D560070AB

View file

@ -34,15 +34,15 @@ return {
settings = { settings = {
typescript = { typescript = {
inlayHints = { inlayHints = {
enumMemberValues = { enabled = true },
functionLikeReturnTypes = { enabled = false },
parameterNames = { parameterNames = {
enabled = "literals", enabled = "literals",
suppressWhenArgumentMatchesName = true, suppressWhenArgumentMatchesName = true,
}, },
parameterTypes = { enabled = true }, parameterTypes = { enabled = true },
variableTypes = { enabled = true },
propertyDeclarationTypes = { enabled = true }, propertyDeclarationTypes = { enabled = true },
functionLikeReturnTypes = { enabled = false }, variableTypes = { enabled = false },
enumMemberValues = { enabled = true },
}, },
}, },
}, },