Files

19 lines
632 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "oxc"],
"rules": {
"react/rules-of-hooks": "error",
"react/only-export-components": ["warn", { "allowConstantExport": true }]
},
"overrides": [
{
// File-based routing TanStack Router: файл роута обязан экспортировать `Route` рядом с
// компонентом страницы — правило тут неисполнимо в принципе.
"files": ["src/routes/**"],
"rules": {
"react/only-export-components": "off"
}
}
]
}