Warn if If
tag is missing condition
attribute.
The following patterns are considered warnings:
<If>
<div/>
</If>
<If>
<div/>
<Else/>
<div/>
</If>
The following patterns are not warnings:
<If condition={foo}>
<div/>
</If>
<If condition={foo}>
<div/>
<Else/>
<div/>
</If>
If you are not using JSX, you can disable this rule