Skip to content

Commit

Permalink
chore(eslint-plugin): fix type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CarsonF committed Nov 16, 2024
1 parent ce730c2 commit 5d1240b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/no-unused-vars.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { rules } from '@typescript-eslint/eslint-plugin';
import { TSESLint, TSESTree } from '@typescript-eslint/utils';
import { Writable } from 'type-fest';
import type { Writable } from 'type-fest';

const baseRule = rules['no-unused-vars'];

Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/tests/RuleTester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
ValidTestCase,
} from '@typescript-eslint/utils/dist/ts-eslint/RuleTester';
import * as path from 'path';
import { Writable as Mutable } from 'type-fest';
import type { Writable as Mutable } from 'type-fest';
import { afterAll } from 'vitest';

export type InferInvalidTestCaseFromRule<
Expand Down

0 comments on commit 5d1240b

Please sign in to comment.