From 9e4debbd0759deac443b6fbe350f00dc99bd642a Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 00:51:12 +0000 Subject: [PATCH 1/3] Add tsconfig.test.json with relaxed settings Co-Authored-By: Tronpis --- tsconfig.test.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tsconfig.test.json diff --git a/tsconfig.test.json b/tsconfig.test.json new file mode 100644 index 0000000..b49a817 --- /dev/null +++ b/tsconfig.test.json @@ -0,0 +1,7 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "noUnusedLocals": false, + "noUnusedParameters": false + } +} From 7cc6f19fa4f10728c3f8996af5fc2c2f529f63fc Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 00:54:37 +0000 Subject: [PATCH 2/3] Update tsconfig.test.json [skip ci] Co-Authored-By: <184758061+llamapreview[bot]@users.noreply.github.com> --- tsconfig.test.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.test.json b/tsconfig.test.json index b49a817..f4f557f 100644 --- a/tsconfig.test.json +++ b/tsconfig.test.json @@ -1,6 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { + // Relax unused-variable checks to avoid false positives in test callbacks and mocks. "noUnusedLocals": false, "noUnusedParameters": false } From 0a1f890d99b293f1220f16936996b5d3761df83c Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 00:57:03 +0000 Subject: [PATCH 3/3] Empty commit to trigger final tests