initial environment setup

This commit is contained in:
radishzzz 2025-01-13 02:50:27 +00:00
commit 9d2be2a82e
15 changed files with 13276 additions and 0 deletions

15
eslint.config.mjs Normal file
View file

@ -0,0 +1,15 @@
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',
},
},
)