From 6cb2481bc60fc8420af2200da8001e2ab0a92f70 Mon Sep 17 00:00:00 2001 From: Shay Patel Date: Sat, 26 Oct 2024 20:32:28 +0100 Subject: [PATCH] Allow any in certain situations --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 1a1ad7a..c9fcf13 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,6 +1,7 @@ { "extends": ["next/core-web-vitals", "next/typescript"], "rules": { - "@next/next/no-img-element": "off" + "@next/next/no-img-element": "off", + "@typescript-eslint/no-explicit-any": "off" } }