Files
log-lottery/eslint.config.js
log1997 c6a10db36b build(eslint): 更新 ESLint 配置以忽略更多文件并添加警告规则
在原有忽略文件列表中新增了 '*.config.js' 文件类型,同时添加了
'no-console' 和 'no-debugger' 规则,并将其设置为警告级别,以提高
代码质量和一致性。
2025-12-04 12:43:45 +08:00

14 lines
345 B
JavaScript

import antfu from '@antfu/eslint-config'
export default antfu(
{
ignores: ['**/node_modules', '**/public', '**/dist', '**/package.json', '**/*.yaml', '**/.gitignore', '**/.env*', '**/tsconfig*', '**/*.config.js'],
},
{
rules: {
'no-console': 'warn',
'no-debugger': 'warn',
}
},
)