Files
koodiklinikka.fi/eslint.config.mjs
Petri Partio 0db0e45239 chore: update dependencies
- Replace `next lint` with `eslint .` (next lint removed in v16)
- Migrate to ESLint flat config format
- Fix React 19 purity errors in FeatureImage and TopFade components
- Update components for Next.js 16 compatibility
2025-12-02 10:30:34 +02:00

6 lines
152 B
JavaScript

import nextConfig from 'eslint-config-next/core-web-vitals';
const eslintConfig = [...nextConfig, { ignores: ['out'] }];
export default eslintConfig;