feat: migrate to ESLint flat config (eslint.config.js)
Pull Request / unit-tests (pull_request) Failing after 58s
Pull Request / acceptance-tests (pull_request) Has been skipped
Pull Request / analyze-bump-type (pull_request) Has been skipped

- Created eslint.config.js using the new flat config format
- Removed .eslintrc.json (old format no longer supported in ESLint v9+)
- Maintained same configuration as before (next/core-web-vitals, next/typescript)
- Kept same ignore patterns
This commit is contained in:
2026-04-01 12:36:39 -07:00
parent 2e98e9eb51
commit e8f0fd2538
2 changed files with 14 additions and 10 deletions
+14
View File
@@ -0,0 +1,14 @@
import next from 'eslint-config-next';
export default [
{
ignores: [
'.next',
'out',
'build',
'next-env.d.ts',
'src/app/test-api/**',
],
},
...next,
];