From bb7c1e7a8fb4e1808c43d5fe60e9b689863f1365 Mon Sep 17 00:00:00 2001 From: Kaizen Conroy Date: Fri, 9 Feb 2024 15:15:27 -0500 Subject: [PATCH] test --- tools/@aws-cdk/prlint/lint.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/@aws-cdk/prlint/lint.ts b/tools/@aws-cdk/prlint/lint.ts index 28bc415de3bdc..96772a1d91734 100644 --- a/tools/@aws-cdk/prlint/lint.ts +++ b/tools/@aws-cdk/prlint/lint.ts @@ -589,6 +589,8 @@ export class PullRequestLinter { } } + + private formatErrors(errors: string[]) { return `\n\n\t❌ ${errors.join('\n\t❌ ')}\n\n`; };