Files
admin-frontend-domain/.oxlintrc.json
T
2026-07-21 08:58:16 +00:00

26 lines
625 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"categories": {
"correctness": "error"
},
"env": {
"browser": true
},
"ignorePatterns": ["dist"],
"plugins": ["eslint", "typescript", "react"],
"rules": {
"react/rules-of-hooks": "error",
"react/exhaustive-deps": "warn",
"typescript/no-explicit-any": "off",
"react/only-export-components": "off"
},
"overrides": [
{
"files": ["tests/e2e/fixtures.ts"],
"rules": {
"react/rules-of-hooks": "off"
}
}
]
}