From 08a5014b5eb13eed882f78a3cbbc7c1d1907d996 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 26 Aug 2023 10:30:25 +0200 Subject: [PATCH] Temp disable react-hooks linting rules --- .eslintrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index a0545d9f..ac4978bc 100644 --- a/.eslintrc +++ b/.eslintrc @@ -11,6 +11,8 @@ "jsx-a11y/control-has-associated-label": "off", "jsx-a11y/label-has-associated-control": "off", "jsx-a11y/click-events-have-key-events": "off", - "jsx-a11y/no-static-element-interactions": "off" + "jsx-a11y/no-static-element-interactions": "off", + "react-hooks/rules-of-hooks": "off", + "react-hooks/exhaustive-deps": "off" } }