feat: initial commit

This commit is contained in:
devilreef 2026-01-08 21:52:19 +06:00
commit c4514cd4c4
19 changed files with 4403 additions and 0 deletions

13
eslint.config.mjs Normal file
View file

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