When you have jsx conditionals, this rule enforces that you use a newline after the first clause.
The following patterns are considered problems:
/*eslint saxo/jsx-conditional-newline: "error"*/
return
<a>
{
a && <b/>
}
</a>;
The following patterns are not considered warnings:
/*eslint saxo/jsx-conditional-newline: "error"*/
return
<a>
{
a &&
<b/>
}
</a>;