Skip to content

Commit

Permalink
chore: fix vitepress config
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Jun 7, 2024
1 parent 128c603 commit cad213d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default defineConfig({
],
},
...Object.values(categories)
.filter((menu) => menu.rules.length)
.filter((menu) => menu.rules.length && menu.specKind !== "proposal")

Check failure on line 64 in docs/.vitepress/config.mjs

View workflow job for this annotation

GitHub Actions / Lint

Replace `(menu)·=>·menu.rules.length·&&·menu.specKind·!==·"proposal"` with `⏎····················(menu)·=>·menu.rules.length·&&·menu.specKind·!==·"proposal",⏎················`
.map((category) => ({
text: category.title,
items: category.rules.map(({ ruleId }) => ({
Expand Down

0 comments on commit cad213d

Please sign in to comment.