feat: init

This commit is contained in:
2025-10-24 04:43:47 +07:00
commit 8b83c15ab1
13 changed files with 4079 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(
{
stylistic: {
indent: 2,
semi: true,
quotes: 'single',
overrides: {
'style/comma-dangle': ['error', 'always-multiline'],
},
},
typescript: true,
},
);