Skip to content

Commit 2d8d619

Browse files
committed
Fix indent errors
1 parent f0dcaca commit 2d8d619

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/rules/display-name.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ module.exports = {
107107
)
108108
);
109109
var namedObjectDeclaration = (
110-
node.type === 'ObjectExpression' &&
111-
node.parent &&
112-
node.parent.parent &&
113-
node.parent.parent.type === 'VariableDeclarator'
110+
node.type === 'ObjectExpression' &&
111+
node.parent &&
112+
node.parent.parent &&
113+
node.parent.parent.type === 'VariableDeclarator'
114114
);
115115
var namedClass = (
116116
(node.type === 'ClassDeclaration' || node.type === 'ClassExpression') &&

0 commit comments

Comments
 (0)