Skip to content

Commit 35c2021

Browse files
chore(deps): update devdependency @nuxt/eslint to v1 (v3) (#90)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Benjamin Canac <[email protected]>
1 parent c505d35 commit 35c2021

File tree

4 files changed

+191
-213
lines changed

4 files changed

+191
-213
lines changed

app/pages/blog/[slug].vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ const { data: surround } = await useAsyncData(`${route.path}-surround`, () => qu
1313
.where({ _extension: 'md' })
1414
.without(['body', 'excerpt'])
1515
.sort({ date: -1 })
16-
.findSurround(withoutTrailingSlash(route.path))
17-
, { default: () => [] })
16+
.findSurround(withoutTrailingSlash(route.path)), { default: () => [] })
1817
1918
const title = post.value.head?.title || post.value.title
2019
const description = post.value.head?.description || post.value.description

app/pages/docs/[...slug].vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ if (!page.value) {
1111
const { data: surround } = await useAsyncData(`${route.path}-surround`, () => queryContent('/docs')
1212
.where({ _extension: 'md', navigation: { $ne: false } })
1313
.only(['title', 'description', '_path'])
14-
.findSurround(withoutTrailingSlash(route.path))
15-
, { default: () => [] })
14+
.findSurround(withoutTrailingSlash(route.path)), { default: () => [] })
1615
1716
useSeoMeta({
1817
title: page.value.title,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"nuxt-og-image": "^4.1.2"
2424
},
2525
"devDependencies": {
26-
"@nuxt/eslint": "^0.7.5",
26+
"@nuxt/eslint": "^1.0.1",
2727
"@nuxthq/studio": "^2.2.1",
2828
"eslint": "^9.19.0",
2929
"vue-tsc": "^2.1.10"

0 commit comments

Comments
 (0)