Files
euchre_camp/eslint.config.js
T
david e8f0fd2538
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
feat: migrate to ESLint flat config (eslint.config.js)
- 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
2026-04-01 12:36:39 -07:00

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,
];