Files
honey-fe/.oxlintrc.json
Hewston Fox 5e9acffa09
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m40s
feat: add settings menu
2026-03-22 04:08:56 +02:00

23 lines
551 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"ignorePatterns": ["**/*.gen.ts", "src/i18n/resources.d.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
}
}