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
The rule no-unused-prop-types currently reports the property value of the unused propType. I think it is more appropriate to report the property key.
// current behaviorFoo.propTypes={neverUsed: PropType.number,// ~~~~~~~~~~~~~~~// PropType is defined but never used. }// proposed behaviorFoo.propTypes={neverUsed: PropType.number,//~~~~~~~~~// PropType is defined but never used. }
The text was updated successfully, but these errors were encountered:
The rule no-unused-prop-types currently reports the property value of the unused propType. I think it is more appropriate to report the property key.
The text was updated successfully, but these errors were encountered: