From 8989abddec4687a9f88479f8039160f33a009e28 Mon Sep 17 00:00:00 2001 From: Lea Date: Thu, 10 Aug 2023 14:16:31 +0200 Subject: [PATCH] chore: disable annoying lint rules --- .eslintrc.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index bffb357..cf7639b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,7 @@ { - "extends": "next/core-web-vitals" + "extends": "next/core-web-vitals", + "rules": { + "@next/next/no-img-element": "off", + "jsx-a11y/alt-text": "off" + } }