This repository has been archived on 2026-06-19. You can view files and clone it, but cannot push or open issues or pull requests.
gso-landingpage/eslint.config.mjs
Athena e01e145417 feat: initial GSO Gruppencoaching landing page
Full 13-section Next.js 16 landing page for "Das 8-Wochen Kundengewinnungs-System für Selbstständige". Built with pnpm, Tailwind CSS v4, TypeScript. Dark theme with MC brand gradient (blue #3B82F6 → purple #8B5CF6). All content from v5 text.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-30 15:11:12 +02:00

18 lines
465 B
JavaScript

import { defineConfig, globalIgnores } from "eslint/config";
import nextVitals from "eslint-config-next/core-web-vitals";
import nextTs from "eslint-config-next/typescript";
const eslintConfig = defineConfig([
...nextVitals,
...nextTs,
// Override default ignores of eslint-config-next.
globalIgnores([
// Default ignores of eslint-config-next:
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
]),
]);
export default eslintConfig;