We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd9c410 commit e3a8d8bCopy full SHA for e3a8d8b
1 file changed
lib/rules/template-require-media-caption.js
@@ -58,10 +58,7 @@ module.exports = {
58
// or muted={{#if ...}}...{{/if}} → BlockStatement) → treat as exempt.
59
// Matches upstream ember-template-lint behavior where MustacheStatement,
60
// BlockStatement, or any non-text/non-"false" value is considered muted.
61
- if (
62
- value.type !== 'GlimmerTextNode' &&
63
- value.type !== 'GlimmerMustacheStatement'
64
- ) {
+ if (value.type !== 'GlimmerTextNode' && value.type !== 'GlimmerMustacheStatement') {
65
return;
66
}
67
0 commit comments