MCPcopy Create free account
hub / github.com/codeaashu/claude-code / isGlobalConfigKey

Function isGlobalConfigKey

src/utils/config.ts:670–672  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

668export type GlobalConfigKey = (typeof GLOBAL_CONFIG_KEYS)[number]
669
670export function isGlobalConfigKey(key: string): key is GlobalConfigKey {
671 return GLOBAL_CONFIG_KEYS.includes(key as GlobalConfigKey)
672}
673
674export const PROJECT_CONFIG_KEYS = [
675 'allowedTools',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected