From 3bca60d87ad4c2861b08948e92e44b1c4bb7d1eb Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 20 Dec 2023 16:03:17 -0500 Subject: [PATCH] lintfix --- packages/@glimmer/validator/lib/validators.ts | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/@glimmer/validator/lib/validators.ts b/packages/@glimmer/validator/lib/validators.ts index ac104ff550..a4bab46e3f 100644 --- a/packages/@glimmer/validator/lib/validators.ts +++ b/packages/@glimmer/validator/lib/validators.ts @@ -266,13 +266,13 @@ export function createTag(label?: DevMode): DirtyableTag { return createTagWithId( DIRYTABLE_TAG_ID, label ?? - devmode( - () => - ({ - reason: 'cell', - label: ['(dirtyable)'], - }) satisfies TagDescription - ) + devmode( + () => + ({ + reason: 'cell', + label: ['(dirtyable)'], + }) satisfies TagDescription + ) ); } @@ -280,13 +280,13 @@ export function createUpdatableTag(label?: DevMode): UpdatableTa return createTagWithId( UPDATABLE_TAG_ID, label ?? - devmode( - () => - ({ - reason: 'cell', - label: ['(updatable)'], - }) satisfies TagDescription - ) + devmode( + () => + ({ + reason: 'cell', + label: ['(updatable)'], + }) satisfies TagDescription + ) ); }