Skip to content

Commit 1bf3e56

Browse files
committed
Make ESLint happy.
1 parent 85700b1 commit 1bf3e56

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/expect/src/jestMatchersObject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
*
77
*/
88

9-
import {getType} from '@jest/get-type';
109
import type {Tester} from '@jest/expect-utils';
10+
import {getType} from '@jest/get-type';
1111
import {AsymmetricMatcher} from './asymmetricMatchers';
1212
import type {
1313
Expect,

packages/expect/src/matchers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
*
77
*/
88

9-
import {getType, isPrimitive} from '@jest/get-type';
109
import {
1110
arrayBufferEquality,
1211
equals,
@@ -18,6 +17,7 @@ import {
1817
subsetEquality,
1918
typeEquality,
2019
} from '@jest/expect-utils';
20+
import {getType, isPrimitive} from '@jest/get-type';
2121
import {
2222
DIM_COLOR,
2323
EXPECTED_COLOR,

packages/jest-config/src/ReporterValidationErrors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
*/
77

88
import chalk = require('chalk');
9-
import type {Config} from '@jest/types';
109
import {getType} from '@jest/get-type';
10+
import type {Config} from '@jest/types';
1111
import {ValidationError} from 'jest-validate';
1212
import {BULLET, DOCUMENTATION_NOTE} from './utils';
1313

packages/jest-matcher-utils/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*/
77

88
import chalk = require('chalk');
9+
import {getType, isPrimitive} from '@jest/get-type';
910
import {
1011
DIFF_DELETE,
1112
DIFF_EQUAL,
@@ -16,7 +17,6 @@ import {
1617
diffStringsRaw,
1718
diffStringsUnified,
1819
} from 'jest-diff';
19-
import {getType, isPrimitive} from '@jest/get-type';
2020
import {
2121
format as prettyFormat,
2222
plugins as prettyFormatPlugins,

packages/jest-snapshot/src/printSnapshot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import chalk = require('chalk');
99
import {getObjectSubset} from '@jest/expect-utils';
10+
import {getType, isPrimitive} from '@jest/get-type';
1011
import {
1112
DIFF_DELETE,
1213
DIFF_EQUAL,
@@ -18,7 +19,6 @@ import {
1819
diffStringsRaw,
1920
diffStringsUnified,
2021
} from 'jest-diff';
21-
import {getType, isPrimitive} from '@jest/get-type';
2222
import {
2323
BOLD_WEIGHT,
2424
EXPECTED_COLOR,

0 commit comments

Comments
 (0)