Skip to content

Commit f6b3105

Browse files
authored
chore: migrate to Nuxt Eslint (nuxt-modules#293)
1 parent 56603aa commit f6b3105

15 files changed

+480
-1817
lines changed

.playground/app.vue

+22-5
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,28 @@ const siteConfig = useSiteConfig({
2626
<header class="sticky top-0 z-50 w-full backdrop-blur flex-none border-b border-gray-900/10 dark:border-gray-50/[0.06] bg-white/75 dark:bg-gray-900/75">
2727
<UContainer class="py-3">
2828
<div class="flex items-center justify-between">
29-
<NuxtLink to="/" class="flex items-end gap-1.5 font-bold text-xl text-gray-900 dark:text-white">
30-
<Icon name="logos:nuxt-icon" class="w-8 h-8" />
29+
<NuxtLink
30+
to="/"
31+
class="flex items-end gap-1.5 font-bold text-xl text-gray-900 dark:text-white"
32+
>
33+
<Icon
34+
name="logos:nuxt-icon"
35+
class="w-8 h-8"
36+
/>
3137
Nuxt
3238
<div class="text-primary-500 dark:text-primary-400">
3339
{{ siteConfig.name }}
3440
</div>
3541
</NuxtLink>
36-
<UDropdown :items="languageOptions" :popper="{ placement: 'bottom-start' }">
37-
<UButton color="white" :label="locale" trailing-icon="i-heroicons-chevron-down-20-solid" />
42+
<UDropdown
43+
:items="languageOptions"
44+
:popper="{ placement: 'bottom-start' }"
45+
>
46+
<UButton
47+
color="white"
48+
:label="locale"
49+
trailing-icon="i-heroicons-chevron-down-20-solid"
50+
/>
3851
</UDropdown>
3952
</div>
4053
</UContainer>
@@ -45,7 +58,11 @@ const siteConfig = useSiteConfig({
4558
</UContainer>
4659
</main>
4760
<footer class="text-sm text-gray-700 flex justify-center items-center py-5">
48-
Made by <UAvatar src="https://avatars.githubusercontent.com/u/5326365?v=4" size="xs" class="w-5 h-5 mx-1" /> Harlan Wilton
61+
Made by <UAvatar
62+
src="https://avatars.githubusercontent.com/u/5326365?v=4"
63+
size="xs"
64+
class="w-5 h-5 mx-1"
65+
/> Harlan Wilton
4966
</footer>
5067
</div>
5168
</template>

.playground/pages/about.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<template>
55
<div>
66
About page
7-
<img src="https://res.cloudinary.com/dl6o1xpyq/image/upload/f_jpg,q_auto:best,dpr_auto,w_240,h_240/images/harlan-wilton" alt="Harlan Wilton">
7+
<img
8+
src="https://res.cloudinary.com/dl6o1xpyq/image/upload/f_jpg,q_auto:best,dpr_auto,w_240,h_240/images/harlan-wilton"
9+
alt="Harlan Wilton"
10+
>
811
</div>
912
</template>

.playground/pages/prerender.vue

+2-2
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)