← back to Govarbitrage

eslint.config.mjs

12 lines

import next from "eslint-config-next";

/** Flat ESLint config for Next.js 16 (native flat export). */
const eslintConfig = [
  {
    ignores: ["node_modules/**", ".next/**", "extension/**", "prisma/seed.ts"],
  },
  ...next,
];

export default eslintConfig;