Skip to content

Commit 1135020

Browse files
committed
Lint fixes
1 parent ab3e813 commit 1135020

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

src/type/definition.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ import identityFunc from '../jsutils/identityFunc';
2020
import defineToJSON from '../jsutils/defineToJSON';
2121
import suggestionList from '../jsutils/suggestionList';
2222
import { type PromiseOrValue } from '../jsutils/PromiseOrValue';
23-
import {
24-
type ObjMap,
25-
type ReadOnlyObjMap,
26-
type ReadOnlyObjMapLike,
27-
} from '../jsutils/ObjMap';
23+
import { type ObjMap, type ReadOnlyObjMap } from '../jsutils/ObjMap';
2824

2925
import { Kind } from '../language/kinds';
3026
import { print } from '../language/printer';

src/type/directives.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ import devAssert from '../jsutils/devAssert';
99
import instanceOf from '../jsutils/instanceOf';
1010
import defineToJSON from '../jsutils/defineToJSON';
1111
import isObjectLike from '../jsutils/isObjectLike';
12-
import {
13-
type ReadOnlyObjMap,
14-
type ReadOnlyObjMapLike,
15-
} from '../jsutils/ObjMap';
12+
import { type ReadOnlyObjMap } from '../jsutils/ObjMap';
1613

1714
import { type DirectiveDefinitionNode } from '../language/ast';
1815
import {

src/type/schema.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ import toObjMap from '../jsutils/toObjMap';
1010
import devAssert from '../jsutils/devAssert';
1111
import instanceOf from '../jsutils/instanceOf';
1212
import isObjectLike from '../jsutils/isObjectLike';
13-
import {
14-
type ObjMap,
15-
type ReadOnlyObjMap,
16-
type ReadOnlyObjMapLike,
17-
} from '../jsutils/ObjMap';
13+
import { type ObjMap, type ReadOnlyObjMap } from '../jsutils/ObjMap';
1814

1915
import { type GraphQLError } from '../error/GraphQLError';
2016
import {

0 commit comments

Comments
 (0)