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
I have searched the existing issues and my issue is unique
My issue appears in the command-line and not only in the text editor
Description Overview
When using a custom array mapping function like lodash.map, the jsx-key rule won't be triggered
importmapfrom'lodash/map';// not triggeredconstComp1=()=>{returnmap([1,2,3],(item)=>{return<div>{item}</div>;});};// triggeredconstComp2=()=>{return[1,2,3].map((item)=>{return<div>{item}</div>;});};
Expected Behavior
Is it possible to add a config to support custom mapping function?