ai-bot/eslint.config.mjs

20 lines
487 B
JavaScript
Raw Normal View History

2025-03-04 16:13:41 +08:00
import { FlatCompat } from '@eslint/eslintrc'
2025-01-16 10:38:01 +08:00
const compat = new FlatCompat({
2025-03-04 16:13:41 +08:00
// import.meta.dirname is available after Node.js v20.11.0
baseDirectory: import.meta.dirname,
})
2025-01-16 10:38:01 +08:00
const eslintConfig = [
2025-03-04 16:13:41 +08:00
...compat.config({
extends: ['next'],
rules: {
2025-03-04 16:13:41 +08:00
'react/no-unescaped-entities': 'off',
'@next/next/no-page-custom-font': 'off',
2025-02-17 18:17:12 +08:00
"@typescript-eslint/no-explicit-any": "off", // 禁用对显式 any 类型的检查
2025-03-04 16:13:41 +08:00
},
2025-03-04 16:13:41 +08:00
}),
]
2025-01-16 10:38:01 +08:00
2025-03-04 16:13:41 +08:00
export default eslintConfig