(loc: Location)
| 120 | } |
| 121 | |
| 122 | printConfig(loc: Location): string { |
| 123 | if (loc !== 'global') { |
| 124 | return '# Codex CLI has no project-local config — use --location=global.\n'; |
| 125 | } |
| 126 | const block = buildCodegraphBlock(); |
| 127 | return `# Add to ${tomlConfigPath()}\n\n${block}\n`; |
| 128 | } |
| 129 | |
| 130 | describePaths(loc: Location): string[] { |
| 131 | if (loc !== 'global') return []; |
nothing calls this directly
no test coverage detected