Skip to content

Commit d1b25d5

Browse files
committed
chore: fix type error
1 parent 0af8b66 commit d1b25d5

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

app/components/ColorizedRuleName.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ const props = defineProps<{
66
prefix?: string
77
url?: string
88
as?: string
9-
deprecated?: boolean
9+
deprecated?: boolean | {
10+
message?: string
11+
url?: string
12+
}
1013
borderless?: boolean
1114
break?: boolean
1215
}>()

eslint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import antfu from '@antfu/eslint-config'
33
import nuxt from './.nuxt/eslint.config.mjs'
44

5-
export default nuxt()
5+
export default await nuxt()
66
.prepend(
7-
antfu(
7+
await antfu(
88
{
99
unocss: true,
1010
vue: {

0 commit comments

Comments
 (0)