Skip to content

Commit 6ece886

Browse files
committed
fix: lint
1 parent 6b9cca0 commit 6ece886

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ node_modules
22
dist
33
pnpm-lock.yaml
44
tests/fixtures
5+
auto-import.d.ts
6+
components.d.ts

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
dist
33
pnpm-lock.yaml
4+
auto-import.d.ts
5+
components.d.ts

playground/src/components/code-input.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ defineEmits<{
1919
bg="transparent"
2020
border="~ rounded gray-200 dark:gray-700"
2121
outline="none active:none"
22-
@input="$emit('update:modelValue', ($event.target as HTMLTextAreaElement).value)"
22+
@input="
23+
$emit('update:modelValue', ($event.target as HTMLTextAreaElement).value)
24+
"
2325
/>
2426
</template>

0 commit comments

Comments
 (0)