( key: string, settings: Settings, _mergedSettings: Settings, )
| 454 | * Check if a setting value is inherited (not set at current scope) |
| 455 | */ |
| 456 | export function isValueInherited( |
| 457 | key: string, |
| 458 | settings: Settings, |
| 459 | _mergedSettings: Settings, |
| 460 | ): boolean { |
| 461 | return !settingExistsInScope(key, settings); |
| 462 | } |
| 463 | |
| 464 | /** |
| 465 | * Get the effective value for display, considering inheritance |
no test coverage detected