19 lines
457 B
JavaScript
19 lines
457 B
JavaScript
import nextPlugin from "@next/eslint-plugin-next";
|
|
import rootConfig from "../../eslint.config.js";
|
|
|
|
export default [
|
|
...rootConfig,
|
|
{
|
|
ignores: ["next-env.d.ts", "next.config.js", "postcss.config.mjs"],
|
|
},
|
|
{
|
|
plugins: { "@next/next": nextPlugin },
|
|
settings: { next: { rootDir: "." } },
|
|
rules: {
|
|
...nextPlugin.configs.recommended.rules,
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
"no-console": "off",
|
|
},
|
|
},
|
|
];
|