From 22385a42c8c760f80b5d592ed33123d465c09fb9 Mon Sep 17 00:00:00 2001 From: yude Date: Sat, 11 Dec 2021 21:13:29 +0900 Subject: [PATCH] Ignore `@next/next/no-img-element`, `react-hooks/exhaustive-deps` --- .eslintrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 2256635..13694db 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,6 +1,8 @@ { "extends": "next/core-web-vitals", "rules": { - "@next/next/no-document-import-in-page": "off" + "@next/next/no-document-import-in-page": "off", + "@next/next/no-img-element": "off", + "react-hooks/exhaustive-deps": "off" } }