JS.REACT.NO.REDUNDANT.SHOULD.COMPONENT.UPDATE
Flag shouldComponentUpdate when extending PureComponent
Warns if you have shouldComponentUpdate
defined when defining a component that extends React.PureComponent.
While having shouldComponentUpdate
will still work, it becomes pointless to extend PureComponent.
Rule Details
Examples of incorrect code for this rule:
Copy
class Foo extends React.PureComponent {
shouldComponentUpdate() {
// do check
}
render() {
return <div>Radical!</div>
}
}
function Bar() {
return class Baz extends React.PureComponent {
shouldComponentUpdate() {
// do check
}
render() {
return <div>Groovy!</div>
}
}
}
Examples of correct code for this rule:
Copy
class Foo extends React.Component {
shouldComponentUpdate() {
// do check
}
render() {
return <div>Radical!</div>
}
}
function Bar() {
return class Baz extends React.Component {
shouldComponentUpdate() {
// do check
}
render() {
return <div>Groovy!</div>
}
}
}
class Qux extends React.PureComponent {
render() {
return <div>Tubular!</div>
}
}