Enforce the closing tag location for multiline JSX elements.
Fixable: This rule is automatically fixable using the --fix
flag on the command line.
This rule checks all JSX multiline elements with children (non-self-closing) and verifies the location of the closing tag. The expectation is that the closing tag is aligned with the opening tag on its own line.
The following patterns are considered warnings:
<Hello>
marklar
</Hello>
<Hello>
marklar</Hello>
The following are not considered warnings:
<Hello>
marklar
</Hello>
<Hello>marklar</Hello>
If you do not care about closing tag JSX alignment then you can disable this rule.