style: fix linting issues met lint-action

This commit is contained in:
Lint Action 2025-02-28 20:14:41 +00:00
parent 5ffaf090d0
commit 6e0f527b1f

View file

@ -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';
}