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/'],
  },
```
This commit is contained in:
Paul
2025-05-16 07:47:05 -07:00
committed by GitHub
parent cead312d4b
commit e395a0aa66

View File

@@ -30,6 +30,9 @@ const eslintConfig = [
],
},
},
{
ignores: ['.next/'],
},
]
export default eslintConfig