feat: setup libs
Some checks failed
Deploy to VPS (dist) / deploy (push) Has been cancelled

Co-authored-by: Hewston Fox <hewstonfox@gmail.com>
Co-authored-by: autofix <noreply@autofix.ci>
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2026-03-08 23:30:37 +00:00
parent 06129b821e
commit 74cb37942e
24 changed files with 2527 additions and 1061 deletions

22
.oxlintrc.json Normal file
View File

@@ -0,0 +1,22 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"ignorePatterns": ["src/routeTree.gen.ts"],
"plugins": ["react", "react-perf", "import", "jsx-a11y", "promise"],
"rules": {
"eqeqeq": ["error", "smart"],
"promise/prefer-await-to-then": "off",
"promise/prefer-await-to-callbacks": "off",
"promise/prefer-await-to-catch": "off"
},
"settings": {
"jsx-a11y": {
"polymorphicPropName": "as"
},
"react": {
"version": "19.2.0"
}
},
"env": {
"builtin": true
}
}