You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given an empty React fragment <></>, our empty-line-between-sibling-elements rule is not checked. Code example:
<><ClayDropDown.CaptionclassName="pb-0"><ClayAutocomplete>
...
</ClayAutocomplete>
// NOTE: It works for these 2 sibling elements
{selectedItems.length ? (<divclassName="mt-2 selected-elements-wrapper">
...
</div>) : null}</ClayDropDown.Caption><Divider/> // NOTE: This is where it should get triggered, too, but it's not
</>
The text was updated successfully, but these errors were encountered:
kresimir-coko
changed the title
Given an empty React fragment <></>, our empty-line-between-sibling-elements rule is not properly enforced
Given an empty React fragment, our empty-line-between-sibling-elements rule is not properly enforced
Mar 7, 2023
I think the problem is not just with the empty fragment. I've run SF in frontend-data-set-web too, with changes to the utils/modules.js file and it ignored me π€· .
Issue type (mark with
x
)Description
Given an empty React fragment
<></>
, ourempty-line-between-sibling-elements
rule is not checked. Code example:The text was updated successfully, but these errors were encountered: