Skip to content
Permalink
Browse files

Make eslint opt-in until it lands on stable (#23509)

  • Loading branch information
timneutkens committed Mar 29, 2021
1 parent fc286d6 commit 2ec2ea8786dce87bbc428aff577bd13e1728db49
@@ -124,7 +124,7 @@ export const defaultConfig: NextConfig = {
reactStrictMode: false,
eslint: {
dev: false,
build: true,
build: false,
},
}

@@ -0,0 +1 @@
module.exports = { eslint: { build: true } }
@@ -0,0 +1,3 @@
module.exports = {
eslint: { build: true },
}

0 comments on commit 2ec2ea8

Please sign in to comment.