Skip to content

Commit 84e6abb

Browse files
committed
lint
1 parent 156f88d commit 84e6abb

File tree

7 files changed

+5
-9
lines changed

7 files changed

+5
-9
lines changed

docs/components/content/LoginForm.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ export type FormData = {
44
password: string
55
}
66
7-
// eslint-disable-next-line vue/define-macros-order
87
const emit = defineEmits<{
98
(e: 'submit', formData: FormData): void
109
}>()

docs/components/content/LoginFormVorms.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export type FormData = {
77
remember: boolean
88
}
99
10-
// eslint-disable-next-line vue/define-macros-order
1110
const emit = defineEmits<{
1211
(e: 'submit', formData: FormData): void
1312
}>()

docs/components/content/Logo.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="logo"></div>
2+
<div class="logo" />
33
</template>
44

55
<style>
@@ -14,4 +14,4 @@
1414
.light .logo {
1515
background-image: url('/logo-light.svg');
1616
}
17-
</style>
17+
</style>

docs/tailwind.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
800: '#065f46',
1515
900: '#064e3b',
1616
},
17-
}
17+
},
1818
},
1919
},
20-
}
20+
}

packages/vue-final-modal/src/components/CoreModal/CoreModal.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export interface CoreModalEmits {
2424
(e: 'clickOutside'): void
2525
}
2626
27-
// eslint-disable-next-line vue/define-macros-order
2827
const props = defineProps(coreModalProps)
2928
const emit = defineEmits<CoreModalEmits>()
3029

packages/vue-final-modal/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default defineConfig({
3434
vueJsx: VueJsx(),
3535
},
3636
}),
37-
DefineOptions()
37+
DefineOptions(),
3838
],
3939
publicDir: false,
4040
build: {

viteplay/src/components/DefaultSlot.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ emit('create')
1616
<button>Click Button!</button>
1717
</div>
1818
</template>
19-

0 commit comments

Comments
 (0)