Run oxfmt across repo, add format script and ignore config

Format all non-generated files with oxfmt via `vp fmt`. Add
.oxfmtignore to skip bindings/ and wasm-pack output. Add npm
format script and update DEVELOPMENT.md docs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Gregory Schier
2026-03-13 09:52:11 -07:00
parent a9cccb21b8
commit 5919fae739
664 changed files with 13631 additions and 13482 deletions
@@ -1,17 +1,17 @@
import { createFileRoute, Navigate, useParams } from '@tanstack/react-router';
import { createFileRoute, Navigate, useParams } from "@tanstack/react-router";
// -----------------------------------------------------------------------------------
// IMPORTANT: This is a deprecated route. Since the active request is optional, it was
// moved from a path param to a query parameter. This route does a redirect to the
// parent, while preserving the active request.
export const Route = createFileRoute('/workspaces/$workspaceId/requests/$requestId')({
export const Route = createFileRoute("/workspaces/$workspaceId/requests/$requestId")({
component: RouteComponent,
});
function RouteComponent() {
const { workspaceId, requestId } = useParams({
from: '/workspaces/$workspaceId/requests/$requestId',
from: "/workspaces/$workspaceId/requests/$requestId",
});
return (
<Navigate