feat: setup libs
Some checks failed
Prepare pull request / prepare (pull_request) Failing after 56s

This commit is contained in:
Hewston Fox
2026-03-09 00:50:24 +02:00
parent 06129b821e
commit 6af8cef67d
22 changed files with 2498 additions and 1057 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
}
}