Files
slm-design/examples/react-vite/.oxlintrc.json

22 lines
517 B
JSON
Raw Normal View History

2026-08-10 19:13:20 +03:00
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "oxc"],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": [
"domains/*/*",
"infra/*/*",
"ui/*/*",
"shared/lib/*/*",
"compositions/screens/*/*",
"compositions/layouts/*/*"
]
}
],
"react/rules-of-hooks": "error",
"react/only-export-components": ["warn", { "allowConstantExport": true }]
}
}