chore: demo app

This commit is contained in:
S. Gromov
2026-08-10 19:13:20 +03:00
parent d0a00fecbc
commit 993dab47df
162 changed files with 12145 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
"$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 }]
}
}