Fix: ESLint-Config, Light-Mode-Akzent auf Violet, next-env.d.ts

- 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>
This commit is contained in:
Dieter Schlüter 2026-04-26 02:28:58 +02:00
commit 50bdab6112
5 changed files with 5206 additions and 403 deletions

14
eslint.config.mjs Normal file
View file

@ -0,0 +1,14 @@
import js from '@eslint/js'
export default [
js.configs.recommended,
{
ignores: ['.next/**', 'out/**', 'landingpage/**', 'node_modules/**'],
},
{
rules: {
'no-undef': 'off',
'no-unused-vars': 'off',
},
},
]