Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx authored Aug 22, 2023
1 parent b1cc66e commit a145550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rules/no-empty-glimmer-component-classes.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = {
context.report({ node, message: ERROR_MESSAGE });
} else if (
node.body.body.length === 1 &&
node.body.body[0].type === 'GlimmerTemplate') &&
node.body.body[0].type === 'GlimmerTemplate' &&

Check failure on line 43 in lib/rules/no-empty-glimmer-component-classes.js

View workflow job for this annotation

GitHub Actions / build (ubuntu, 14.x)

Delete `··`

Check failure on line 43 in lib/rules/no-empty-glimmer-component-classes.js

View workflow job for this annotation

GitHub Actions / build (ubuntu, 16.x)

Delete `··`

Check failure on line 43 in lib/rules/no-empty-glimmer-component-classes.js

View workflow job for this annotation

GitHub Actions / build (ubuntu, 18.x)

Delete `··`
!subClassHasTypeDefinition
) {
context.report({ node, message: ERROR_MESSAGE_TEMPLATE_TAG });
Expand Down

0 comments on commit a145550

Please sign in to comment.