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 04f3b9f commit ed319dcCopy full SHA for ed319dc
lib/rules/jsx-wrap-multilines.js
@@ -132,7 +132,7 @@ module.exports = {
132
if (isEnabled('arrow') && arrowBody.type !== 'BlockStatement') {
133
check(arrowBody);
134
}
135
- }
+ },
136
137
ConditionalExpression: function(node) {
138
check(node.consequent);
@@ -144,9 +144,9 @@ module.exports = {
144
},
145
146
JSXAttribute: function (node) {
147
- if (node.value && node.value.type === 'JSXExpressionContainer') {
148
- check(node.value.expression);
149
+ if (node.value && node.value.type === 'JSXExpressionContainer') {
+ check(node.value.expression);
+ }
150
151
};
152
0 commit comments