chore(lint): sort imports in app.module and worker after Sentry add
Biome's organizeImports flagged the @sentry/nestjs imports being out of alphabetical order. Auto-fixed via biome check --write. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -2,8 +2,8 @@ import { resolve } from "node:path";
|
||||
import { Module } from "@nestjs/common";
|
||||
import { ConfigModule } from "@nestjs/config";
|
||||
import { APP_FILTER, APP_GUARD, APP_INTERCEPTOR } from "@nestjs/core";
|
||||
import { SentryModule } from "@sentry/nestjs/setup";
|
||||
import { ThrottlerGuard, ThrottlerModule } from "@nestjs/throttler";
|
||||
import { SentryModule } from "@sentry/nestjs/setup";
|
||||
import { AdminModule } from "./admin/admin.module";
|
||||
import { AnalyticsModule } from "./analytics/analytics.module";
|
||||
import { AuthModule } from "./auth/auth.module";
|
||||
|
||||
@@ -4,9 +4,9 @@ import "./telemetry/worker-tracing"; // MUST be early — instruments modules be
|
||||
import "dotenv/config";
|
||||
import { Worker } from "bullmq";
|
||||
import { drizzle } from "drizzle-orm/postgres-js";
|
||||
import postgres from "postgres";
|
||||
import Redis from "ioredis";
|
||||
import OpenAI from "openai";
|
||||
import postgres from "postgres";
|
||||
import { QUEUE_NAMES, getBullConnection, getBullTelemetry } from "./jobs/bull.config";
|
||||
import { processEmexScrape } from "./jobs/processors/emex-scrape.processor";
|
||||
import { processQueryCleanup } from "./jobs/processors/query-cleanup.processor";
|
||||
|
||||
Reference in New Issue
Block a user