templates: add eslint ignore rule for '.next/' (#12332)

### What?
Standardizes ESLint configurations across all template projects like
website template to ensure consistent code quality enforcement.

### Why?
Previously, there were inconsistencies in the ESLint configurations
between different template projects. Some templates were missing the
.next/ ignore pattern, which could lead to unnecessary linting of build
files. By standardizing these configurations, we ensure consistent code
quality standards and developer experience across all template projects.

### How?
Added the missing ignores: ['.next/'] configuration to templates that
were missing it
This commit is contained in:
Rot4tion
2025-05-09 01:06:33 +07:00
committed by GitHub
parent 72662257a8
commit 09f15ff874
5 changed files with 15 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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