roleping-bot/eslint.config.mjs
2025-11-21 19:04:14 +06:00

13 lines
225 B
JavaScript

import antfu from '@antfu/eslint-config'
export default antfu({
stylistic: {
indent: 2,
quotes: 'single',
},
typescript: true,
rules: {
'antfu/no-top-level-await': 'off',
'no-console': 'off',
},
})