Skip to content

Commit ed319dc

Browse files
committed
[jsx-wrap-multilines] Fix typo
1 parent 04f3b9f commit ed319dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/rules/jsx-wrap-multilines.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ module.exports = {
132132
if (isEnabled('arrow') && arrowBody.type !== 'BlockStatement') {
133133
check(arrowBody);
134134
}
135-
}
135+
},
136136

137137
ConditionalExpression: function(node) {
138138
check(node.consequent);
@@ -144,9 +144,9 @@ module.exports = {
144144
},
145145

146146
JSXAttribute: function (node) {
147-
if (node.value && node.value.type === 'JSXExpressionContainer') {
148-
check(node.value.expression);
149-
}
147+
if (node.value && node.value.type === 'JSXExpressionContainer') {
148+
check(node.value.expression);
149+
}
150150
}
151151
};
152152
}

0 commit comments

Comments
 (0)