(builtinExts, extKey)
| 456 | } |
| 457 | |
| 458 | function isBuiltinFeatureEnabled(builtinExts, extKey) { |
| 459 | if (extKey === "inlayHints") { |
| 460 | return builtinExts?.[extKey] === true; |
| 461 | } |
| 462 | return builtinExts?.[extKey] !== false; |
| 463 | } |
| 464 | |
| 465 | async function persistEnabled(serverId, value) { |
| 466 | await updateServerConfig(serverId, { enabled: value }); |
no outgoing calls
no test coverage detected