-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
[no-unused-prop-types] known false positives doc #1344
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! After these changes, could you squash these down to a single commit?
docs/rules/no-unused-prop-types.md
Outdated
```js | ||
class AComponent extends React.Component { | ||
render() { | ||
const { props } = this.props; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const { props } = this;
?
docs/rules/no-unused-prop-types.md
Outdated
|
||
```js | ||
class AComponent extends React.Component { | ||
const { aProp } = this.props.aProp; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const { aProp } = this.props;
Done. Thanks |
No description provided.