import { defineConfig, globalIgnores } from "eslint/config";
const eslintConfig = defineConfig([
{
ignores: [
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
],
},
rules: {
// 自定义规则
]);
export default eslintConfig;