mirror of
https://github.com/reonokiy/blog.nokiy.net.git
synced 2025-06-15 11:12:54 +02:00
15 lines
284 B
JavaScript
15 lines
284 B
JavaScript
import antfu from '@antfu/eslint-config'
|
|
|
|
export default antfu(
|
|
{
|
|
unocss: true,
|
|
typescript: true,
|
|
astro: true,
|
|
rules: {
|
|
'style/max-len': 'off',
|
|
'no-console': 'warn',
|
|
'unocss/order': 'error',
|
|
'unocss/order-attributify': 'error',
|
|
},
|
|
},
|
|
)
|