From 6170eef44135d9ef92ee84e8c6a3f89ee66aa330 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Fri, 10 Feb 2023 20:09:23 +0100 Subject: [PATCH] format --- .eslintignore | 4 +++- .prettierignore | 3 ++- website/src/docs/MobileNav.jsx | 4 +++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index 8b9ef749..cbac6563 100644 --- a/.eslintignore +++ b/.eslintignore @@ -15,4 +15,6 @@ vite.config.js !**/*.mjs **/*.tsx **/*.ts -**/*.json \ No newline at end of file +**/*.json +**/dev-dist +**/dist \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index 1b106696..d3aafaaa 100644 --- a/.prettierignore +++ b/.prettierignore @@ -8,4 +8,5 @@ packages/mini/krill-parser.js packages/xen/tunejs.js paper pnpm-lock.yaml -pnpm-workspace.yaml \ No newline at end of file +pnpm-workspace.yaml +**/dev-dist \ No newline at end of file diff --git a/website/src/docs/MobileNav.jsx b/website/src/docs/MobileNav.jsx index a8f57d1c..a198d04a 100644 --- a/website/src/docs/MobileNav.jsx +++ b/website/src/docs/MobileNav.jsx @@ -36,7 +36,9 @@ export default function MobileNav({ sidebar }) { as="a" href={`/${item.link}`} className={classNames( - item.current ? 'bg-background text-white' : 'text-gray-300 hover:bg-lineHighlight hover:text-white', + item.current + ? 'bg-background text-white' + : 'text-gray-300 hover:bg-lineHighlight hover:text-white', 'block px-3 py-2 rounded-md text-base font-medium', )} aria-current={item.current ? 'page' : undefined}