Skip to content

Commit e3a8d8b

Browse files
committed
Fix lint: apply Prettier formatting
1 parent fd9c410 commit e3a8d8b

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

lib/rules/template-require-media-caption.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,7 @@ module.exports = {
5858
// or muted={{#if ...}}...{{/if}} → BlockStatement) → treat as exempt.
5959
// Matches upstream ember-template-lint behavior where MustacheStatement,
6060
// BlockStatement, or any non-text/non-"false" value is considered muted.
61-
if (
62-
value.type !== 'GlimmerTextNode' &&
63-
value.type !== 'GlimmerMustacheStatement'
64-
) {
61+
if (value.type !== 'GlimmerTextNode' && value.type !== 'GlimmerMustacheStatement') {
6562
return;
6663
}
6764
}

0 commit comments

Comments
 (0)