Skip to content

Commit

Permalink
🌿 Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Apr 6, 2024
1 parent fc3a0be commit 03984ae
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions is/_deprecated.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { UnionToIntersection } from "../_typeutil.ts";
import type { Predicate } from "./type.ts";
import { type isObjectOf } from "./factory.ts";
import { type GetMetadata, type WithMetadata } from "../metadata.ts";
import type { isObjectOf } from "./factory.ts";
import type { GetMetadata, WithMetadata } from "../metadata.ts";
import { isIntersectionOf, isUnionOf } from "./utility.ts";

type IsObjectOfMetadata = GetMetadata<ReturnType<typeof isObjectOf>>;
Expand Down
2 changes: 1 addition & 1 deletion is/_deprecated_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "https://deno.land/[email protected]/testing/snapshot.ts";
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
import { type Equal, stringify } from "./_testutil.ts";
import { type Predicate, type PredicateType } from "./type.ts";
import type { Predicate, PredicateType } from "./type.ts";
import { isBoolean, isNumber, isString } from "./core.ts";
import { isObjectOf } from "./factory.ts";
import is, { isAllOf, isOneOf } from "./_deprecated.ts";
Expand Down
2 changes: 1 addition & 1 deletion is/annotation_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "https://deno.land/[email protected]/testing/snapshot.ts";
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
import { type Equal, stringify } from "./_testutil.ts";
import { type Predicate } from "./type.ts";
import type { Predicate } from "./type.ts";
import {
isArray,
isAsyncFunction,
Expand Down
2 changes: 1 addition & 1 deletion is/core_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
assertStrictEquals,
} from "https://deno.land/[email protected]/assert/mod.ts";
import { stringify } from "./_testutil.ts";
import { type Predicate } from "./type.ts";
import type { Predicate } from "./type.ts";
import is, {
isAny,
isArray,
Expand Down
2 changes: 1 addition & 1 deletion is/factory.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { FlatType } from "../_typeutil.ts";
import type { Predicate, PredicateType } from "./type.ts";
import { isOptionalOf, isReadonlyOf } from "./annotation.ts";
import { type isOptionalOf, isReadonlyOf } from "./annotation.ts";
import {
isAny,
isArray,
Expand Down
2 changes: 1 addition & 1 deletion is/factory_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "https://deno.land/[email protected]/testing/snapshot.ts";
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
import { type Equal, stringify } from "./_testutil.ts";
import { type Predicate } from "./type.ts";
import type { Predicate } from "./type.ts";
import { isOptionalOf } from "./annotation.ts";
import {
isArray,
Expand Down
2 changes: 1 addition & 1 deletion is/utility_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "https://deno.land/[email protected]/testing/snapshot.ts";
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
import { type Equal, stringify } from "./_testutil.ts";
import { type Predicate, type PredicateType } from "./type.ts";
import type { Predicate, PredicateType } from "./type.ts";
import { isOptionalOf } from "./annotation.ts";
import { isBoolean, isNumber, isString, isUndefined } from "./core.ts";
import { isObjectOf } from "./factory.ts";
Expand Down

0 comments on commit 03984ae

Please sign in to comment.