no-component-will-receive-props
Full Name in eslint-plugin-react-x
react-x/no-component-will-receive-propsFull Name in @eslint-react/eslint-plugin
@eslint-react/no-component-will-receive-propsFeatures
🔍 🔄
Presets
corerecommendedrecommended-typescriptrecommended-type-checked
What it does
Prevents usage of componentWillReceiveProps in class components.
This API has been renamed from componentWillReceiveProps to UNSAFE_componentWillReceiveProps. The old name has been deprecated. In a future major version of React, only the new name will work.
A safe codemod is available for this rule.
Examples
Failing
import React from "react";
class MyComponent extends React.Component {
componentWillReceiveProps() {
// ...
}
}Passing
import React from "react";
class MyComponent extends React.Component {
UNSAFE_componentWillReceiveProps() {
// ...
}
}