From d01d8b7a5e72b277684f00f62119f9521d91b247 Mon Sep 17 00:00:00 2001 From: Alex Johansson Date: Thu, 2 Sep 2021 16:33:05 +0200 Subject: [PATCH] allows builds to complete even if the project has lint errors. (#552) --- next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.js b/next.config.js index fe22975685..a41d034b94 100644 --- a/next.config.js +++ b/next.config.js @@ -42,6 +42,10 @@ module.exports = withTM({ locales: ["en"], defaultLocale: "en", }, + eslint: { + // This allows production builds to successfully complete even if the project has ESLint errors. + ignoreDuringBuilds: true, + }, typescript: { ignoreBuildErrors: true, },