Skip to content

Commit

Permalink
chore(deps): update dependency @antfu/eslint-config to v4 (#126)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency @antfu/eslint-config to v4

* style: fix lint

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Northword <northword@outlook.com>
  • Loading branch information
renovate[bot] and northword authored Mar 6, 2025
1 parent da1804f commit 27f51f1
Show file tree
Hide file tree
Showing 8 changed files with 411 additions and 459 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@antfu/eslint-config": "^4.6.0",
"@giscus/vue": "3.1.1",
"@highcharts/dashboards": "2.3.0",
"@iconify-json/ep": "^1.2.2",
Expand Down
839 changes: 391 additions & 448 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/.vitepress/config/buildEnd.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import type { SiteConfig } from 'vitepress'
import { copyFileSync, writeFileSync } from 'node:fs'
import path from 'node:path'
import FastGlob from 'fast-glob'
import { Feed } from 'feed'
import { createContentLoader, type SiteConfig } from 'vitepress'
import { createContentLoader } from 'vitepress'
import { getGitTimestamp } from '../utils/getGitTimestamp'
import { getDefaultTitle, getTextSummary } from '../utils/markdown'

Expand Down
3 changes: 2 additions & 1 deletion src/.vitepress/theme/components/PluginAuthorCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ const totalStars = computed(() =>
top: 50%;
right: 5rem;
transform: translateY(-50%);
font-family: 'French Script MT', 'Apple Chancery', 'Lucida Calligraphy', Cursive, 'Brush Script MT', 'Times New Roman';
font-family:
'French Script MT', 'Apple Chancery', 'Lucida Calligraphy', Cursive, 'Brush Script MT', 'Times New Roman';
font-size: 3rem;
font-weight: bold;
font-style: italic;
Expand Down
5 changes: 3 additions & 2 deletions src/.vitepress/theme/components/PluginCards.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<script setup lang="ts">
import type { PluginInfo, PluginTagType } from '@data/plugins.data'
import { data as plugins } from '@data/plugins.data'
import type { Ref } from 'vue'
import { data as plugins } from '@data/plugins.data'
import { tags as allTags } from '@data/pluginTags'
import MarketSearch from '@theme/components/MarketSearch.vue'
import MarketTagsFilter from '@theme/components/MarketTagsFilter.vue'
import MarketToolBar from '@theme/components/MarketToolBar.vue'
import { syncRef, useUrlSearchParams } from '@vueuse/core'
import { computed, type Ref, ref, toRef, watch } from 'vue'
import { computed, ref, toRef, watch } from 'vue'
import PluginAuthorCard from './PluginAuthorCard.vue'
import PluginCard from './PluginCard.vue'
Expand Down
8 changes: 5 additions & 3 deletions src/.vitepress/theme/components/StyleCards.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<script setup lang="ts">
import type { Ref } from 'vue'
import { data as styles } from '@data/styles.data'
import MarketSearch from '@theme/components/MarketSearch.vue'
import MarketSearch from '@theme/components/MarketSearch.vue'
import MarketTagsFilter from '@theme/components/MarketTagsFilter.vue'
import MarketToolBar from '@theme/components/MarketToolBar.vue'
import { syncRef, useUrlSearchParams } from '@vueuse/core'
import { computed, type Ref, ref, toRef } from 'vue'
import { syncRef, useUrlSearchParams } from '@vueuse/core'
import { computed, ref, toRef } from 'vue'
import StyleCardWithPop from './StyleCardWithPop.vue'
import StyleCardWithPreview from './StyleCardWithPreview.vue'
Expand Down
6 changes: 4 additions & 2 deletions src/.vitepress/theme/components/TranslatorCards.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<script setup lang="ts">
import type { Ref } from 'vue'
import { data } from '@data/translatorsLittle.data'
import MarketSearch from '@theme/components/MarketSearch.vue'
import MarketTagsFilter from '@theme/components/MarketTagsFilter.vue'
import MarketToolBar from '@theme/components/MarketToolBar.vue'
import MarketToolBar from '@theme/components/MarketToolBar.vue'
import { syncRef, useUrlSearchParams } from '@vueuse/core'
import { computed, type Ref, ref, toRef } from 'vue'
import { computed, ref, toRef } from 'vue'
import { useItemType, useSortedItemTypes } from '../composables/localize'
import TranslatorCard from './TranslatorCard.vue'
Expand Down
4 changes: 3 additions & 1 deletion src/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import type { Theme } from 'vitepress'
import type { Plugin } from 'vue'

import { NolebaseGitChangelogPlugin } from '@nolebase/vitepress-plugin-git-changelog/client'
// @ts-expect-error no types
import nprogress from 'nprogress'
import DefaultTheme from 'vitepress/theme'
import { h, type Plugin } from 'vue'
import { h } from 'vue'

import DocFooter from './components/DocFooter.vue'
import Giscus from './components/Giscus.vue'
Expand Down

0 comments on commit 27f51f1

Please sign in to comment.