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 know comments on prop types are not in favour here, but for those who do have them, would it be acceptable to support sorting comments together with their prop types? i.e. currently the rule would fix
{/** z */z: PropTypes.string,/** a */a: PropTypes.any}
to
propTypes: {/** z */a: PropTypes.any,/** a */z: PropTypes.string}