aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/app/routes.ts
diff options
context:
space:
mode:
author苏向夜 <46275354+fu050409@users.noreply.github.com>2026-03-26 08:50:26 +0800
committerGitHub <noreply@github.com>2026-03-26 08:50:26 +0800
commit7d0e92e6d3b172adfe552ffae9b97f8dad6f63ae (patch)
treef54ab2bf4867eb69a6e7db890c882f9ea080a324 /packages/docs/app/routes.ts
parente356ab996ad3ef4ad5fb9c90d4a4b4e61ff3342d (diff)
parent41589eac819da64e832539df3e1c7117a6393ad0 (diff)
downloadDropOut-7d0e92e6d3b172adfe552ffae9b97f8dad6f63ae.tar.gz
DropOut-7d0e92e6d3b172adfe552ffae9b97f8dad6f63ae.zip
chore(lint): partial apply docs code lints (#123)
cc @NtskwK ptal, and, some codes cannot pass the code lint, check plz. ## Summary by Sourcery Apply linting and formatting updates across the docs app, and align tooling and release config for the @dropout/docs package. Enhancements: - Normalize imports, string literals, and JSX formatting across the docs app for consistent style and lint compliance. - Tidy i18n, routing, and docs loader code without changing behavior, improving readability and maintainability. Build: - Register the @dropout/docs package in the release/config system with nodejs resolver and alpha pre-release tagging. - Update docs-related Vite and TypeScript config files to match the new linting and path conventions. - Remove the nodejs publish command block from the shared changes config to simplify release behavior. Chores: - Bump @biomejs/biome to the latest version and add core-js to onlyBuiltDependencies for tooling compatibility. - Add a changeset for @dropout/docs describing the docs linting patch release. - Introduce or update Biome and docs content metadata config files to support the new linting setup.
Diffstat (limited to 'packages/docs/app/routes.ts')
-rw-r--r--packages/docs/app/routes.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/docs/app/routes.ts b/packages/docs/app/routes.ts
index 2997ecf..d12d93c 100644
--- a/packages/docs/app/routes.ts
+++ b/packages/docs/app/routes.ts
@@ -1,16 +1,16 @@
-import { route, type RouteConfig } from '@react-router/dev/routes';
+import { type RouteConfig, route } from "@react-router/dev/routes";
export default [
// Home routes: / and /:lang
- route(':lang?', 'routes/home.tsx', { id: 'home' }),
+ route(":lang?", "routes/home.tsx", { id: "home" }),
// Docs routes: /docs/* and /:lang/docs/*
- route(':lang?/docs', 'routes/docs.tsx', { id: 'docs' }),
- route(':lang?/docs/*', 'docs/page.tsx', { id: 'docs-page' }),
+ route(":lang?/docs", "routes/docs.tsx", { id: "docs" }),
+ route(":lang?/docs/*", "docs/page.tsx", { id: "docs-page" }),
// API routes
- route('api/search', 'docs/search.ts', { id: 'api-search' }),
+ route("api/search", "docs/search.ts", { id: "api-search" }),
// Catch-all 404
- route('*', 'routes/not-found.tsx', { id: 'not-found' }),
+ route("*", "routes/not-found.tsx", { id: "not-found" }),
] satisfies RouteConfig;