Add ESLint to the frontend

Wires up @nuxt/eslint (the official Nuxt module) so `npm run lint`,
already documented in CLAUDE.md's pre-completion checklist, actually
exists. It auto-generates a flat config aware of Nuxt's auto-imports,
so it doesn't flag composables and utils that Nuxt injects without an
explicit import.
This commit is contained in:
2026-09-11 11:25:34 +02:00
parent 49c42ecc96
commit 6609e3ae28
4 changed files with 2848 additions and 2 deletions
+2
View File
@@ -33,4 +33,6 @@ export default defineNuxtConfig({
typescript: {
strict: true,
},
modules: ['@nuxt/eslint'],
})