From 6e0f527b1f9df07a8a57bbb314a4e2edaf4c8028 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Fri, 28 Feb 2025 20:14:41 +0000 Subject: [PATCH] style: fix linting issues met lint-action --- test.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test.ts b/test.ts index 5b6d755b..00b168ab 100644 --- a/test.ts +++ b/test.ts @@ -1,9 +1,8 @@ async function test_Function() { - return 1+1; + return 1 + 1; } for (let index = 0; index < 100; index++) { - await test_Function(); - const a = "test"; + await test_Function(); + const a = 'test'; } -