Skip to content

Commit 69e8850

Browse files
fix lint error
1 parent 4dfeccb commit 69e8850

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

transforms/angle-brackets/transform.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,8 @@ function transformToAngleBracket(_, fileInfo, config) {
384384
MustacheStatement(node) {
385385
// Don't change attribute statements
386386
const isValidMustache =
387-
node.loc.source !== '(synthetic)' && !shouldIgnoreMustacheStatement(node.path.original, config);
387+
node.loc.source !== '(synthetic)' &&
388+
!shouldIgnoreMustacheStatement(node.path.original, config);
388389
const tagName = node.path && node.path.original;
389390
const isNestedComponent = isNestedComponentTagName(tagName);
390391

0 commit comments

Comments
 (0)