From 0ec132af0473ce0cb8ee0d13d0a7c0d6c7fa9f90 Mon Sep 17 00:00:00 2001 From: Hugo <60015232+hugop95@users.noreply.github.com> Date: Mon, 27 Jan 2025 07:11:29 +0100 Subject: [PATCH] fix: add missing closing curly bracket --- utils/report-errors.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/utils/report-errors.ts b/utils/report-errors.ts index 342891c5c..1dd778b72 100644 --- a/utils/report-errors.ts +++ b/utils/report-errors.ts @@ -13,15 +13,15 @@ export const LEFT = 'left' const LEFT_GROUP = 'leftGroup' export const ORDER_ERROR = - `Expected "{{${RIGHT}}" to come before "{{${LEFT}}".` as const + `Expected "{{${RIGHT}}}" to come before "{{${LEFT}}}".` as const export const DEPENDENCY_ORDER_ERROR = - `Expected dependency "{{${RIGHT}}" to come before "{{${NODE_DEPENDENT_ON_RIGHT}}}".` as const + `Expected dependency "{{${RIGHT}}}" to come before "{{${NODE_DEPENDENT_ON_RIGHT}}}".` as const export const GROUP_ORDER_ERROR = - `Expected "{{${RIGHT}}" ({{${RIGHT_GROUP}}) to come before "{{${LEFT}}" ({{${LEFT_GROUP}}).` as const + `Expected "{{${RIGHT}}}" ({{${RIGHT_GROUP}}}) to come before "{{${LEFT}}}" ({{${LEFT_GROUP}}}).` as const export const EXTRA_SPACING_ERROR = - `Extra spacing between "{{${LEFT}}" and "{{${RIGHT}}" objects.` as const + `Extra spacing between "{{${LEFT}}}" and "{{${RIGHT}}}" objects.` as const export const MISSED_SPACING_ERROR = - `Missed spacing between "{{${LEFT}}" and "{{${RIGHT}}".` as const + `Missed spacing between "{{${LEFT}}}" and "{{${RIGHT}}}".` as const interface ReportErrorsParameters { context: TSESLint.RuleContext