feat: first commit

This commit is contained in:
eleanor.mao
2025-03-31 22:34:22 +08:00
commit d25187c9c8
390 changed files with 57031 additions and 0 deletions

26
.eslintrc Normal file
View File

@ -0,0 +1,26 @@
{
"extends": ["taro/react", "prettier", "plugin:@typescript-eslint/recommended"],
"plugins": ["prettier", "import", "@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"import/order": [
"error",
{
"groups": ["builtin", "external", ["internal", "parent", "sibling", "index"], "unknown"],
"pathGroups": [{
"pattern": "@/**",
"group": "external",
"position": "after"
}],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
],
"prettier/prettier": "error"
}
}