From 02052a1c10d083c73c2720979a0b1c00acf93bc5 Mon Sep 17 00:00:00 2001 From: Merlin Beutlberger Date: Wed, 17 Apr 2024 15:58:10 +0200 Subject: [PATCH] refactor(formatter/text): Change lint report title --- src/formatter/text.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/formatter/text.ts b/src/formatter/text.ts index c2459f071..0902830bc 100644 --- a/src/formatter/text.ts +++ b/src/formatter/text.ts @@ -24,8 +24,7 @@ export class Text { #buffer = ""; format(lintResults: LintResult[], showDetails: boolean) { - this.#writeln(""); - this.#writeln(`## UI5Lint Report (${new Date().toLocaleString()}) ##`); + this.#writeln(`UI5 linter report:`); this.#writeln(""); let totalErrorCount = 0; let totalWarningCount = 0;