style: fix extension lint violations

This commit is contained in:
Peter Steinberger
2026-04-06 14:45:04 +01:00
parent e8141716b4
commit af62a2c2e4
380 changed files with 2067 additions and 1501 deletions

View File

@@ -1195,9 +1195,17 @@ export async function runMemoryPromoteExplain(
const rich = isRich();
const lines = [
`${colorize(rich, theme.heading, "Promotion Explain")} ${colorize(rich, theme.muted, `(${agentId})`)}`,
`${colorize(rich, theme.accent, candidate.key)}`,
`${colorize(rich, theme.muted, `${shortenHomePath(candidate.path)}:${candidate.startLine}-${candidate.endLine}`)}`,
`${colorize(rich, theme.heading, "Promotion Explain")} ${colorize(
rich,
theme.muted,
"(" + String(agentId) + ")",
)}`,
colorize(rich, theme.accent, candidate.key),
colorize(
rich,
theme.muted,
`${shortenHomePath(candidate.path)}:${String(candidate.startLine)}-${String(candidate.endLine)}`,
),
candidate.snippet,
colorize(
rich,