- eslint.config.mjs mit @eslint/js (flat config, ESLint 9) - eslint + eslint-config-next als devDependencies hinzugefügt - Light Mode --accent und --ring von Grün auf Violet geändert (oklch 280) - next-env.d.ts aktualisiert Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
242 B
JavaScript
14 lines
242 B
JavaScript
import js from '@eslint/js'
|
|
|
|
export default [
|
|
js.configs.recommended,
|
|
{
|
|
ignores: ['.next/**', 'out/**', 'landingpage/**', 'node_modules/**'],
|
|
},
|
|
{
|
|
rules: {
|
|
'no-undef': 'off',
|
|
'no-unused-vars': 'off',
|
|
},
|
|
},
|
|
]
|