From c5ead229a9f38be1db10aed744cb9e3e912aeb80 Mon Sep 17 00:00:00 2001 From: Sabir Hassan Date: Mon, 26 Dec 2022 22:35:18 +0500 Subject: [PATCH] chore: quick fix --- src/rules/line/noGremlins.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules/line/noGremlins.ts b/src/rules/line/noGremlins.ts index 9b38539..6e63321 100644 --- a/src/rules/line/noGremlins.ts +++ b/src/rules/line/noGremlins.ts @@ -5,7 +5,7 @@ import { Severity } from '../../types/Severity' const name = 'noGremlins' const description = 'Disallow characters specified in grimlins array' -const message = 'Line contains a grimlin character' +const message = 'Line contains a grimlin' const test = (value: string, lineNumber: number, config?: LintConfig) => { const severity = config?.severityLevel[name] || Severity.Warning