We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-is-mounted.md
isMounted is an anti-pattern, is not available when using ES6 classes, and it is on its way to being officially deprecated.
isMounted
Examples of incorrect code for this rule:
var Hello = createReactClass({ handleClick: function() { setTimeout(function() { if (this.isMounted()) { return; } }); }, render: function() { return <div onClick={this.handleClick.bind(this)}>Hello</div>; } });
Examples of correct code for this rule:
var Hello = createReactClass({ render: function() { return <div onClick={this.props.handleClick}>Hello</div>; } });
The text was updated successfully, but these errors were encountered:
standard/eslint-config-standard-jsx@2f94c18
No branches or pull requests
https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-is-mounted.md
isMounted
is an anti-pattern, is not available when using ES6 classes, and it is on its way to being officially deprecated.Rule Details
Examples of incorrect code for this rule:
Examples of correct code for this rule:
The text was updated successfully, but these errors were encountered: