Files
log-lottery/eslint.config.js
2025-12-10 00:10:33 +08:00

14 lines
370 B
JavaScript

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