Skip to content

Commit 79c1944

Browse files
committed
adding tests
1 parent b2b1dac commit 79c1944

11 files changed

+5974
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<script lang="ts">
2+
let count = $state(0);
3+
</script>
4+
5+
<button
6+
on:click={(e: MouseEvent) => {
7+
const next: number = count + 1;
8+
count = next;
9+
}}
10+
>clicks: {count}</button>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[
2+
{
3+
"ruleId": "no-unused-vars",
4+
"code": "e: MouseEvent",
5+
"line": 6,
6+
"column": 13
7+
}
8+
]

0 commit comments

Comments
 (0)