Skip to content

Commit

Permalink
fix: correct lint error after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
armano2 committed Apr 14, 2023
1 parent 2b47e31 commit 277fdb5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/enum-utils/shared.ts
@@ -1,4 +1,4 @@
import * as tsutils from 'tsutils';
import * as tsutils from 'ts-api-utils';
import * as ts from 'typescript';

import * as util from '../../util';
Expand Down
@@ -1,5 +1,5 @@
import type { TSESTree } from '@typescript-eslint/utils';
import * as tsutils from 'tsutils';
import * as tsutils from 'ts-api-utils';
import * as ts from 'typescript';

import * as util from '../util';
Expand Down
Expand Up @@ -34,9 +34,9 @@ export function createProvideCodeActions(
edits: [
{
resource: model.uri,
// @ts-expect-error monaco for ts >= 4.8
// monaco for ts >= 4.8
textEdit: editOperation,
// monaco for ts < 4.8
// @ts-expect-error monaco for ts < 4.8
edit: editOperation,
},
],
Expand Down

0 comments on commit 277fdb5

Please sign in to comment.