From fdd1ece65bbedb2b497b4a8f24190d147abadb11 Mon Sep 17 00:00:00 2001 From: Toby Liddicoat Date: Thu, 27 Feb 2025 20:08:44 +0000 Subject: [PATCH] Fix inconsistent bracket spacing and cleanup unused comment Standardize spacing for array brackets across the codebase to improve readability and consistency. Additionally, relocate the eslint-disable comment for clarity and ensure proper association with the unused variable declaration. Signed-off-by: Toby Liddicoat --- server/util-server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/util-server.js b/server/util-server.js index bfc309b05..8e0fd5aa6 100644 --- a/server/util-server.js +++ b/server/util-server.js @@ -35,9 +35,9 @@ const { const dayjs = require("dayjs"); // SASLOptions used in JSDoc -// eslint-disable-next-line no-unused-vars const { Kafka, + // eslint-disable-next-line no-unused-vars SASLOptions, } = require("kafkajs"); const crypto = require("crypto");