{ "extends": ["next/core-web-vitals", "eslint:recommended"], "rules": { "react/react-in-jsx-scope": "off", // Next.js doesn't require React in scope. "no-console": "warn", // Allow console.logs but with a warning. "semi": ["warn", "always"], // Enforce semicolons with a warning. "quotes": ["warn", "single"], // Prefer single quotes with a warning. "@next/next/no-html-link-for-pages": "off" // Disable Next.js-specific rule. } }