Closed
Description
Similar to #1775 ...
The bug with the --fix
part of this rule is still there, and the PR did not fix it.
Rules
"react/jsx-one-expression-per-line": "error",
"react/jsx-indent": [
"error",
4
],
Original Code
return (
<div>text</div>
);
Actual (after fix)
return (
<div>
text
</div>
);
Expected
return (
<div>
text
</div>
);