refactor: clean up code formatting and improve readability in various files

This commit is contained in:
Abhimanyu Saharan
2026-02-09 00:29:26 +05:30
parent bb5a8482f3
commit 8c4bcca603
20 changed files with 1188 additions and 1146 deletions

View File

@@ -1,7 +1,6 @@
import { createExponentialBackoff } from "./backoff";
import { describe, expect, it, vi } from "vitest";
describe("createExponentialBackoff", () => {
it("uses default options", () => {
const backoff = createExponentialBackoff();

View File

@@ -50,7 +50,8 @@ export async function checkGatewayConnection(params: {
} catch (error) {
return {
ok: false,
message: error instanceof Error ? error.message : "Unable to reach gateway.",
message:
error instanceof Error ? error.message : "Unable to reach gateway.",
};
}
}