(scope: PluginScope)
| 112 | * Returns the original cwd for 'project' and 'local' scopes, undefined otherwise. |
| 113 | */ |
| 114 | export function getProjectPathForScope(scope: PluginScope): string | undefined { |
| 115 | return scope === 'project' || scope === 'local' ? getOriginalCwd() : undefined |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Is this plugin enabled (value === true) in .claude/settings.json? |
no test coverage detected