Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 277fdb5

Browse files
committedApr 14, 2023
fix: correct lint error after merge
1 parent 2b47e31 commit 277fdb5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎packages/eslint-plugin/src/rules/enum-utils/shared.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as tsutils from 'tsutils';
1+
import * as tsutils from 'ts-api-utils';
22
import * as ts from 'typescript';
33

44
import * as util from '../../util';

‎packages/eslint-plugin/src/rules/no-unsafe-enum-comparison.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { TSESTree } from '@typescript-eslint/utils';
2-
import * as tsutils from 'tsutils';
2+
import * as tsutils from 'ts-api-utils';
33
import * as ts from 'typescript';
44

55
import * as util from '../util';

‎packages/website/src/components/editor/createProvideCodeActions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ export function createProvideCodeActions(
3434
edits: [
3535
{
3636
resource: model.uri,
37-
// @ts-expect-error monaco for ts >= 4.8
37+
// monaco for ts >= 4.8
3838
textEdit: editOperation,
39-
// monaco for ts < 4.8
39+
// @ts-expect-error monaco for ts < 4.8
4040
edit: editOperation,
4141
},
4242
],

0 commit comments

Comments
 (0)
Please sign in to comment.