Skip to content

Commit 03984ae

Browse files
committed
🌿 Fix linting errors
1 parent fc3a0be commit 03984ae

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

is/_deprecated.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { UnionToIntersection } from "../_typeutil.ts";
22
import type { Predicate } from "./type.ts";
3-
import { type isObjectOf } from "./factory.ts";
4-
import { type GetMetadata, type WithMetadata } from "../metadata.ts";
3+
import type { isObjectOf } from "./factory.ts";
4+
import type { GetMetadata, WithMetadata } from "../metadata.ts";
55
import { isIntersectionOf, isUnionOf } from "./utility.ts";
66

77
type IsObjectOfMetadata = GetMetadata<ReturnType<typeof isObjectOf>>;

is/_deprecated_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
} from "https://deno.land/[email protected]/testing/snapshot.ts";
88
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
99
import { type Equal, stringify } from "./_testutil.ts";
10-
import { type Predicate, type PredicateType } from "./type.ts";
10+
import type { Predicate, PredicateType } from "./type.ts";
1111
import { isBoolean, isNumber, isString } from "./core.ts";
1212
import { isObjectOf } from "./factory.ts";
1313
import is, { isAllOf, isOneOf } from "./_deprecated.ts";

is/annotation_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
} from "https://deno.land/[email protected]/testing/snapshot.ts";
88
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
99
import { type Equal, stringify } from "./_testutil.ts";
10-
import { type Predicate } from "./type.ts";
10+
import type { Predicate } from "./type.ts";
1111
import {
1212
isArray,
1313
isAsyncFunction,

is/core_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
assertStrictEquals,
44
} from "https://deno.land/[email protected]/assert/mod.ts";
55
import { stringify } from "./_testutil.ts";
6-
import { type Predicate } from "./type.ts";
6+
import type { Predicate } from "./type.ts";
77
import is, {
88
isAny,
99
isArray,

is/factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { FlatType } from "../_typeutil.ts";
22
import type { Predicate, PredicateType } from "./type.ts";
3-
import { isOptionalOf, isReadonlyOf } from "./annotation.ts";
3+
import { type isOptionalOf, isReadonlyOf } from "./annotation.ts";
44
import {
55
isAny,
66
isArray,

is/factory_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
} from "https://deno.land/[email protected]/testing/snapshot.ts";
88
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
99
import { type Equal, stringify } from "./_testutil.ts";
10-
import { type Predicate } from "./type.ts";
10+
import type { Predicate } from "./type.ts";
1111
import { isOptionalOf } from "./annotation.ts";
1212
import {
1313
isArray,

is/utility_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
} from "https://deno.land/[email protected]/testing/snapshot.ts";
88
import { assertType } from "https://deno.land/[email protected]/testing/types.ts";
99
import { type Equal, stringify } from "./_testutil.ts";
10-
import { type Predicate, type PredicateType } from "./type.ts";
10+
import type { Predicate, PredicateType } from "./type.ts";
1111
import { isOptionalOf } from "./annotation.ts";
1212
import { isBoolean, isNumber, isString, isUndefined } from "./core.ts";
1313
import { isObjectOf } from "./factory.ts";

0 commit comments

Comments
 (0)