Files
famapp/eslint.config.mjs
ginnoirandClaude Sonnet 4.6 453c75ea4c Add Next.js 15 app skeleton with Tailwind v4 and shadcn/ui
Next.js 15 + React 19, Tailwind v4, shadcn/ui (button, card, input,
dialog), postcss config, standalone output. ESLint extended with
next/core-web-vitals via eslint-config-next flat export. node-linker=hoisted
in .npmrc to allow standalone builds on Windows (symlink restriction).
next-env.d.ts added to .gitignore.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-06 00:47:57 -05:00

33 lines
659 B
JavaScript

import js from "@eslint/js";
import tseslint from "typescript-eslint";
import globals from "globals";
import nextConfig from "eslint-config-next/core-web-vitals";
export default tseslint.config(
{
ignores: [
"node_modules/**",
".next/**",
"dist/**",
"drizzle/**",
],
},
js.configs.recommended,
...tseslint.configs.recommended,
...nextConfig,
{
languageOptions: {
globals: {
...globals.node,
...globals.browser,
},
},
rules: {
"@typescript-eslint/no-unused-vars": [
"error",
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
],
},
},
);