diff --git a/extensions/copilot/script/eslintGitBlameReport/generateEslintIgnoreReport.ts b/extensions/copilot/script/eslintGitBlameReport/generateEslintIgnoreReport.ts index 3634e612e51..9875d7e175f 100644 --- a/extensions/copilot/script/eslintGitBlameReport/generateEslintIgnoreReport.ts +++ b/extensions/copilot/script/eslintGitBlameReport/generateEslintIgnoreReport.ts @@ -74,7 +74,7 @@ async function main(): Promise { const onlyHandle = resolvedMessages[0].username; reportLines.push(`- [ ] ${file} @${onlyHandle}`); } else { - reportLines.push(file); + reportLines.push(`- [ ] ${file}`); for (const { message, username } of resolvedMessages) { reportLines.push(formatReportLine(message, username)); }