From 4e3cb9d2c1480450dd11018e52846349abccd858 Mon Sep 17 00:00:00 2001 From: aronmal Date: Fri, 27 Jan 2023 22:13:48 +0100 Subject: [PATCH] Fix lint warning for implicit use of tags --- leaky-ships/.eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/leaky-ships/.eslintrc.json b/leaky-ships/.eslintrc.json index bffb357..f0f3abe 100644 --- a/leaky-ships/.eslintrc.json +++ b/leaky-ships/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": "next/core-web-vitals" + "extends": "next/core-web-vitals", + "rules": { + "@next/next/no-img-element": "off" + } }