jsx-tag-spacing doesn't allow for forbid a space before ">" in a start tag #1396
Closed
Description
opened on Aug 25, 2017
In our project we have the need for forbidding spaces before the ">" symbol in a start tag. For example the following should not be allowed:
<RectangleSelection
minWidth={150}
minHeight={50} >
{children}
</RectangleSelection>
In comparison the following should not result in an error:
<RectangleSelection
minWidth={150}
minHeight={50}>
{children}
</RectangleSelection>
Activity