Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 419 Bytes

jsx-choose-not-empty.md

File metadata and controls

26 lines (16 loc) · 419 Bytes

Choose tag must not be empty (jsx-choose-not-empty)

Warn when Choose tag is empty or does not have at least one When tag as child.

Rule Details

The following patterns are considered warnings:

<Choose></Choose>

<Choose><div/></Choose>

The following patterns are not warnings:

<Choose>
    <When/>
</Choose>

When Not To Use It

If you are not using JSX, you can disable this rule