Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Maggi64 committed Nov 22, 2024
1 parent 0c0c1bb commit 948794d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmark/array/unique.bench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { uniq as uniqLodash, uniqWith as uniqWithLodash } from "lodash-es";
import { unique } from "moderndash";
import { unique as uniqueRadash } from "radash";
import { uniq as uniqRambda, uniqWith as uniqWithRambda } from "rambda";
import { uniq as uniqRemeda, uniqWith as uniqWithRemeda } from "remeda";
import { unique as uniqRemeda, uniqueWith as uniqWithRemeda } from "remeda";
import { bench, describe } from "vitest";

import { randomNumberArray, randomStringArray } from "../testData.js";
Expand Down
3 changes: 2 additions & 1 deletion website/src/components/sidebar/Sidebar.svelte
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<script lang="ts">
import type { LayoutData } from "../../routes/$types.js";
import { searchTerm } from "$utils/searchStore.js";
import Category from "./Category.svelte";
import { goto } from "$app/navigation";
import { searchTerm } from "$utils/searchStore.js";
export let sidebarEntries: LayoutData["sidebarEntries"];
Expand Down
3 changes: 2 additions & 1 deletion website/src/routes/+page.server.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import type { PageServerLoad } from "./$types";

import { markdownParser } from "$utils/markdown.js";

import readme from "../../../README.md?raw";

import { markdownParser } from "$utils/markdown.js";

// remove first markdown image from readme
const trimmedReadme = readme.replace(/!\[.*]\(.*\)/, "");
Expand Down

0 comments on commit 948794d

Please sign in to comment.