Next.js Discord

Discord Forum

Eslint React exhaustive-deps not suggesting functions

Answered
Cape lion posted this in #help-forum
Open in Discord
Cape lionOP
  const foo = () => {};
  const bar = Math.random();

  React.useEffect(() => {
    foo();
    console.log(bar);
  }, []);

Given this code inside a component i get the following es lint warning in my nextjs app

React Hook React.useEffect has a missing dependency: 'bar'. Either include it or remove the dependency array.eslintreact-hooks/exhaustive-deps


I come from working on react router 6 on react 18, from experience i would expect the warning to contain both foo and bar, and then foo should be callbacked to prevent new reference on every render, can someone please explain this to me.

My eslint is standard setup with new react project
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const compat = new FlatCompat({
  baseDirectory: __dirname,
});

const eslintConfig = [
  ...compat.extends("next/core-web-vitals", "next/typescript"),
];

export default eslintConfig;


I originally thought it was cause of react 19 compiler but when researching it seems that has to be turned on explicitly, is this a design decision by next to turn the eslint warning off for functions then it is upto you to determine whether needs to be included or not?
Answered by LuisLl
Functions are supposed to be pure which means they should return the same output given the same input, and do not trigger side effects within them.

Once you create a function it will work with the given input for that instance, there’s no need to tell react to re-synchronize when the function is created again if it’s always gonna be the same.
View full answer

5 Replies

Functions are supposed to be pure which means they should return the same output given the same input, and do not trigger side effects within them.

Once you create a function it will work with the given input for that instance, there’s no need to tell react to re-synchronize when the function is created again if it’s always gonna be the same.
Answer
On the other hand, bar does change its value on every render, and React needs to keep track of the latest value to re-run your effect effectively
@Cape lion solved?
Cape lionOP
Yes thank you for explaining
@Cape lion Yes thank you for explaining
You’re welcome, just mark the solution for other people to find it!