Files
AI-CS/frontend/eslint.config.mjs
2026-02-27 22:36:54 +08:00

18 lines
345 B
JavaScript

// Next.js 16 ESLint 配置
// 简化配置,避免 FlatCompat 的循环引用问题
// 只定义忽略规则,让 Next.js 在构建时处理其他规则
export default [
{
ignores: [
"node_modules/**",
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
"*.config.*",
"dist/**",
],
},
];