Skip to content

Commit

Permalink
chore:lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Bekacru committed Jul 15, 2024
1 parent cf36671 commit 9654e42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@
"lint:fix": "biome check . --apply",
"typecheck": "tsc --noEmit"
},
"files": [
"dist"
],
"files": ["dist"],
"type": "module"
}
2 changes: 1 addition & 1 deletion src/create-fetch/types.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import type { ZodSchema, z } from "zod";
import type { StringLiteralUnion } from "../type-utils";
import type { BetterFetchOption, BetterFetchResponse } from "../types";
import type {
FetchSchema,
IsOptionRequired,
RequiredOptionKeys,
Schema,
} from "./schema";
import type { StringLiteralUnion } from "../type-utils";

export interface CreateFetchOption extends BetterFetchOption {
schema?: Schema;
Expand Down
4 changes: 2 additions & 2 deletions src/test/fetch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ import {
expectTypeOf,
it,
} from "vitest";
import { betterFetch, BetterFetchResponse, createFetch } from "..";
import { router } from "./test-router";
import { z } from "zod";
import { BetterFetchResponse, betterFetch, createFetch } from "..";
import { router } from "./test-router";

describe("fetch", () => {
const getURL = (path?: string) =>
Expand Down

0 comments on commit 9654e42

Please sign in to comment.