Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.

Commit bc5e8ad

Browse files
committed
chore: format codebase
1 parent 429a94f commit bc5e8ad

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

lib/components/blocks/kanban/kanban.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ import type { StateUpdater } from "preact/hooks";
1414
import {
1515
Announcements,
1616
DndContext,
17+
type DragEndEvent,
18+
type DragOverEvent,
1719
DragOverlay,
20+
type DragStartEvent,
1821
KeyboardSensor,
1922
MouseSensor,
2023
TouchSensor,
24+
type UniqueIdentifier,
2125
useDndContext,
2226
useSensor,
2327
useSensors,
24-
type DragEndEvent,
25-
type DragOverEvent,
26-
type DragStartEvent,
27-
type UniqueIdentifier,
2828
} from "../../../deps/@dnd-kit/core.ts";
29-
import { SortableContext, arrayMove } from "../../../deps/@dnd-kit/sortable.ts";
29+
import { arrayMove, SortableContext } from "../../../deps/@dnd-kit/sortable.ts";
3030
import { ScrollArea, ScrollBar } from "../../scroll-area.tsx";
3131
import type { Table } from "../table/table.tsx";
3232
import { coordinateGetter } from "./multiple-containers-keyboard-preset.ts";

lib/plugins/auth/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import * as React from "react";
44
import type { FreshContext, Plugin, PluginRoute } from "fresh/server.ts";
55
import type { NetzoState } from "../../mod.ts";
66
import {
7-
NetzoStateWithAuth,
87
assertUserIsMemberOfWorkspaceOfApiKeyIfProviderIsNetzo,
98
createAssertUserIsAuthorized,
109
createAuthState,
1110
ensureSignedIn,
11+
NetzoStateWithAuth,
1212
setRequestState,
1313
setSessionState,
1414
} from "./middlewares/mod.ts";

lib/plugins/database/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import type { Plugin, PluginRoute } from "fresh/server.ts";
33
import { createClient } from "npm:@libsql/[email protected]";
44
import { database as createDatabase } from "../../database/mod.ts";
5-
import { SQL, eq, getTableColumns, sql } from "../../deps/drizzle-orm/mod.ts";
5+
import { eq, getTableColumns, SQL, sql } from "../../deps/drizzle-orm/mod.ts";
66
import { SQLiteTable } from "../../deps/drizzle-orm/sqlite-core.ts";
77
import { DrizzleConfig } from "../../deps/drizzle-orm/utils.ts";
88
import { apiKeyAuthentication, cors } from "../middleware.ts";

lib/plugins/unocss/preset-shadcn/mod.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export function presetShadcn(options: PresetShadcnOptions = {}): Preset<Theme> {
293293
"w-4",
294294
"i-mdi-chevron-right",
295295
"h-4",
296-
"w-4"
296+
"w-4",
297297
],
298298
// carousel:
299299
...[
@@ -506,7 +506,7 @@ export function presetShadcn(options: PresetShadcnOptions = {}): Preset<Theme> {
506506
"w-4",
507507
"w-auto",
508508
"p-0",
509-
"hover:bg-primary"
509+
"hover:bg-primary",
510510
],
511511
// dialog:
512512
...[

0 commit comments

Comments
 (0)