website refactor

This commit is contained in:
2026-01-17 18:28:10 +01:00
parent 6d57f8b1ce
commit 64d9e7fd16
44 changed files with 1729 additions and 415 deletions

View File

@@ -214,7 +214,10 @@
"apps/website/app/**/page.tsx",
"apps/website/app/**/page.ts",
"apps/website/app/**/layout.tsx",
"apps/website/app/**/layout.ts"
"apps/website/app/**/layout.ts",
"playwright.*.config.ts",
"vitest.*.config.ts",
"vitest.config.ts"
],
"rules": {
"import/no-default-export": "off",
@@ -224,7 +227,9 @@
"message": "Interface names should not start with 'I'. Use descriptive names without the 'I' prefix (e.g., 'LiverCompositor' instead of 'ILiveryCompositor').",
"selector": "TSInterfaceDeclaration[id.name=/^I[A-Z]/]"
}
]
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off"
}
},
{
@@ -236,6 +241,11 @@
"**/*.ts",
"**/*.tsx"
],
"excludedFiles": [
"playwright.*.config.ts",
"vitest.*.config.ts",
"vitest.config.ts"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
@@ -529,4 +539,4 @@
"typescript": {}
}
}
}
}