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
Where a hook has multiple overlapping dependencies, `react/exhaustive-deps` rule reports that overlap. e.g.:
```js
function Foo(props) {
useCallback(() => {
console.log(props.foo);
}, [props, props.foo]);
return <div />;
}
```
```
eslint-plugin-react(exhaustive-deps): React Hook useCallback has unnecessary dependency: props.foo
```
[eslint-plugin-react-hooks](https://www.npmjs.com/package/eslint-plugin-react-hooks) always reports the longest dependency (`props.foo` in above case). Whereas Oxlint would report either `props` or `props.foo` randomly - because the dependencies are stored in an `FxHashSet` which does not have a defined iteration order.
This PR fixes that so it always reports the longer dependency, aligning with the ESLint plugin.
0 commit comments