Skip to content

Commit fc0c01e

Browse files
committed
import naming convention
1 parent 749586a commit fc0c01e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/validation/__tests__/harness.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { expectJSON } from '../../__testUtils__/expectJSON.js';
22

33
import type { Maybe } from '../../jsutils/Maybe.js';
44

5-
import type { ParseOptions } from '../../language/parser';
6-
import { parse } from '../../language/parser';
5+
import type { ParseOptions } from '../../language/parser.js';
6+
import { parse } from '../../language/parser.js';
77

88
import type { GraphQLSchema } from '../../type/schema.js';
99

src/validation/rules/OverlappingFieldsCanBeMergedRule.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ import {
2929
isObjectType,
3030
} from '../../type/definition.js';
3131

32-
import { sortValueNode } from '../../utilities/sortValueNode';
33-
import { typeFromAST } from '../../utilities/typeFromAST';
32+
import { sortValueNode } from '../../utilities/sortValueNode.js';
33+
import { typeFromAST } from '../../utilities/typeFromAST.js';
3434

3535
import type { ValidationContext } from '../ValidationContext.js';
3636

0 commit comments

Comments
 (0)