e8f0fd2538
- 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
15 lines
197 B
JavaScript
15 lines
197 B
JavaScript
import next from 'eslint-config-next';
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
'.next',
|
|
'out',
|
|
'build',
|
|
'next-env.d.ts',
|
|
'src/app/test-api/**',
|
|
],
|
|
},
|
|
...next,
|
|
];
|