Skip to content

Commit

Permalink
Fix sidebar categories in rule docs (#2646)
Browse files Browse the repository at this point in the history
  • Loading branch information
FloEdelmann authored Dec 16, 2024
1 parent 0a92a56 commit 3bae67f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -32,39 +32,39 @@ export default async () => {
{ title: 'Base Rules', categoryIds: ['base'] },
{
title: 'Priority A: Essential',
categoryIds: ['vue3-essential', 'essential']
categoryIds: ['vue3-essential', 'vue2-essential']
},
{
title: 'Priority A: Essential for Vue.js 3.x',
categoryIds: ['vue3-essential']
},
{
title: 'Priority A: Essential for Vue.js 2.x',
categoryIds: ['essential']
categoryIds: ['vue2-essential']
},
{
title: 'Priority B: Strongly Recommended',
categoryIds: ['vue3-strongly-recommended', 'strongly-recommended']
categoryIds: ['vue3-strongly-recommended', 'vue2-strongly-recommended']
},
{
title: 'Priority B: Strongly Recommended for Vue.js 3.x',
categoryIds: ['vue3-strongly-recommended']
},
{
title: 'Priority B: Strongly Recommended for Vue.js 2.x',
categoryIds: ['strongly-recommended']
categoryIds: ['vue2-strongly-recommended']
},
{
title: 'Priority C: Recommended',
categoryIds: ['vue3-recommended', 'recommended']
categoryIds: ['vue3-recommended', 'vue2-recommended']
},
{
title: 'Priority C: Recommended for Vue.js 3.x',
categoryIds: ['vue3-recommended']
},
{
title: 'Priority C: Recommended for Vue.js 2.x',
categoryIds: ['recommended']
categoryIds: ['vue2-recommended']
}
]

Expand Down

0 comments on commit 3bae67f

Please sign in to comment.