Skip to content

Commit e395a0a

Browse files
authored
chore: add ignores .next folder in eslint config for templates template (#12423)
The automated PR will override this config in other templates, so I'm just copying it into the base template eslint config ``` { ignores: ['.next/'], }, ```
1 parent cead312 commit e395a0a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

templates/_template/eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ const eslintConfig = [
3030
],
3131
},
3232
},
33+
{
34+
ignores: ['.next/'],
35+
},
3336
]
3437

3538
export default eslintConfig

0 commit comments

Comments
 (0)