Skip to content

Commit

Permalink
fix(utils): try to remove extra whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
IKatsuba committed Nov 9, 2023
1 parent 3c086c6 commit 67225ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -85,6 +85,6 @@ Categories
│ Code style │ 54 │ 13 │
└────────────────┴───────┴────────┘
Made with ❤ by code-pushup.dev
Made with ❤ by code-pushup.dev
"
`;
2 changes: 1 addition & 1 deletion packages/utils/src/lib/report-to-stdout.ts
Expand Up @@ -24,7 +24,7 @@ export function reportToStdout(report: ScoredReport): string {
output += addLine();
output += addLine(reportToDetailSection(report));
output += addLine(reportToOverviewSection(report));
output += addLine(`${FOOTER_PREFIX} ${CODE_PUSHUP_DOMAIN}`);
output += addLine(`Made with ❤ by ${CODE_PUSHUP_DOMAIN}`);

return output;
}
Expand Down

0 comments on commit 67225ca

Please sign in to comment.