Skip to content

Files

Latest commit

41d9809 · Oct 27, 2017

History

History
38 lines (26 loc) · 811 Bytes

jsx-closing-tag-location.md

File metadata and controls

38 lines (26 loc) · 811 Bytes

Validate closing tag location in JSX (react/jsx-closing-tag-location)

Enforce the closing tag location for multiline JSX elements.

Fixable: This rule is automatically fixable using the --fix flag on the command line.

Rule Details

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>

When not to use

If you do not care about closing tag JSX alignment then you can disable this rule.