import nextConfig from "eslint-config-next/core-web-vitals"; const config = [ { ignores: [ ".next/**", "node_modules/**", ".cache/**", "dist/**", "build/**", "create-agentic-app/**", "drizzle/**", "scripts/**", ], }, ...nextConfig, { rules: { // React rules "react/jsx-no-target-blank": "error", "react/no-unescaped-entities": "off", // React Hooks rules "react-hooks/rules-of-hooks": "error", "react-hooks/exhaustive-deps": "warn", // Import rules "import/no-anonymous-default-export": "warn", "import/order": [ "warn", { groups: [ "builtin", "external", "internal", ["parent", "sibling"], "index", "type", ], pathGroups: [ { pattern: "react", group: "builtin", position: "before", }, { pattern: "next/**", group: "builtin", position: "before", }, { pattern: "@/**", group: "internal", position: "before", }, ], pathGroupsExcludedImportTypes: ["react", "next"], "newlines-between": "never", alphabetize: { order: "asc", caseInsensitive: true, }, }, ], // Best practices "no-console": ["warn", { allow: ["warn", "error"] }], "prefer-const": "error", "no-var": "error", eqeqeq: ["error", "always", { null: "ignore" }], }, }, ]; export default config;