From 8164cd84a84897132c912d78da268cf55146de51 Mon Sep 17 00:00:00 2001 From: dvelo <52332868+DeveloLongScript@users.noreply.github.com> Date: Fri, 26 Jul 2024 15:49:05 -0500 Subject: [PATCH] disable `react-hooks/exhaustive-deps` in `eslint` --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 957cd15..f76f0a2 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["next/core-web-vitals"] + "extends": ["next/core-web-vitals"], + "rules": { + "react-hooks/exhaustive-deps": "off" + } }