Skip to content

Commit 85644d6

Browse files
committed
Merge branch 'main' into pr/false-positive-for-await-async-utils
2 parents 594420a + e2c9bbb commit 85644d6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

lib/configs/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { join } from 'path';
22

3-
import type { TSESLint } from '@typescript-eslint/utils';
3+
import { type TSESLint } from '@typescript-eslint/utils';
44

55
import {
66
importDefault,

lib/utils/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TSESLint } from '@typescript-eslint/utils';
1+
import { type TSESLint } from '@typescript-eslint/utils';
22

33
type RecommendedConfig<TOptions extends readonly unknown[]> =
44
| TSESLint.RuleMetaDataDocs['recommended']

tests/lib/rules/consistent-data-testid.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TSESLint } from '@typescript-eslint/utils';
1+
import { type TSESLint } from '@typescript-eslint/utils';
22

33
import rule, {
44
MessageIds,

tests/lib/rules/no-node-access.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TSESLint } from '@typescript-eslint/utils';
1+
import { type TSESLint } from '@typescript-eslint/utils';
22

33
import rule, { RULE_NAME, Options } from '../../../lib/rules/no-node-access';
44
import { createRuleTester } from '../test-utils';

tests/lib/rules/no-unnecessary-act.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TSESLint } from '@typescript-eslint/utils';
1+
import { type TSESLint } from '@typescript-eslint/utils';
22

33
import rule, {
44
MessageIds,

tools/generate-configs/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { LinterConfigRules } from '../../lib/configs';
1+
import { type LinterConfigRules } from '../../lib/configs';
22
import rules from '../../lib/rules';
33
import {
44
SUPPORTED_TESTING_FRAMEWORKS,

tools/generate-configs/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { writeFileSync } from 'fs';
22
import { resolve } from 'path';
33

4-
import type { TSESLint } from '@typescript-eslint/utils';
4+
import { type TSESLint } from '@typescript-eslint/utils';
55
import { format, resolveConfig } from 'prettier';
66

77
const prettierConfig = resolveConfig.sync(__dirname);

0 commit comments

Comments
 (0)