style: fix import ordering and formatting in new files

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Arthur Belleville 2026-04-02 22:09:18 +02:00
parent 9679a5816a
commit 4c8529a355
No known key found for this signature in database
3 changed files with 10 additions and 4 deletions

View file

@ -1,5 +1,11 @@
import {
DeleteObjectsCommand,
GetObjectCommand,
ListObjectsV2Command,
PutObjectCommand,
S3Client,
} from "@aws-sdk/client-s3";
import sharp from "sharp";
import { S3Client, PutObjectCommand, GetObjectCommand, DeleteObjectsCommand, ListObjectsV2Command } from "@aws-sdk/client-s3";
export const ORG_ICONS_BUCKET = "web-assets";

View file

@ -1,7 +1,8 @@
import type { Database, Tables } from "@xtablo/shared-types";
import type { S3Client } from "@aws-sdk/client-s3";
import type { Database, Tables } from "@xtablo/shared-types";
import { Hono } from "hono";
import { createFactory } from "hono/factory";
import { getOrgIcon } from "../helpers/orgIcons.js";
import {
type EventTypeConfig,
type Exception,
@ -11,7 +12,6 @@ import {
type TimeSlot,
type WeeklyAvailability,
} from "../helpers/slots.js";
import { getOrgIcon } from "../helpers/orgIcons.js";
import type { BaseEnv } from "../types/app.types.js";
// import { MiddlewareManager } from "../middlewares/middleware.js";

View file

@ -4,7 +4,7 @@ import { Hono } from "hono";
import { createFactory } from "hono/factory";
import { getOrganizationBillingState } from "../helpers/billing.js";
import { createInvitedUser, getOrganizationPlan, MAX_TABLO_LIMIT } from "../helpers/helpers.js";
import { uploadOrgIcons, deleteOrgIcons } from "../helpers/orgIcons.js";
import { deleteOrgIcons, uploadOrgIcons } from "../helpers/orgIcons.js";
import type { AuthEnv } from "../types/app.types.js";
const factory = createFactory<AuthEnv>();