allows builds to complete even if the project has lint errors. (#552)

This commit is contained in:
Alex Johansson 2021-09-02 16:33:05 +02:00 committed by GitHub
parent 2d23a8b7db
commit d01d8b7a5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
},