Open
Description
Issue type (mark with x
)
- π€ Question
- π Bug report
- π Feature request
- π€·ββοΈ Other
Description
Given an empty React fragment <></>
, our empty-line-between-sibling-elements
rule is not checked. Code example:
<>
<ClayDropDown.Caption className="pb-0">
<ClayAutocomplete>
...
</ClayAutocomplete>
// NOTE: It works for these 2 sibling elements
{selectedItems.length ? (
<div className="mt-2 selected-elements-wrapper">
...
</div>
) : null}
</ClayDropDown.Caption>
<Divider /> // NOTE: This is where it should get triggered, too, but it's not
</>