Files
ai-portal/eslint.config.mjs
T

20 lines
292 B
JavaScript
Raw Normal View History

2026-04-29 19:06:38 +08:00
import { defineConfig, globalIgnores } from "eslint/config";
const eslintConfig = defineConfig([
2026-05-06 17:22:50 +08:00
{
ignores: [
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
],
},
{
rules: {
// 自定义规则
},
},
2026-04-29 19:06:38 +08:00
]);
export default eslintConfig;