Skip to content

Commit

Permalink
fix: remove type property
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-bandi committed Apr 28, 2024
1 parent 00c75a4 commit 164798e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import { RuleTester } from '@typescript-eslint/rule-tester';
import type { TSESLint, TSESTree } from '@typescript-eslint/utils';
import { AST_NODE_TYPES } from '@typescript-eslint/utils';

import type { MessageIds } from '../../../src/rules/no-unused-vars';
import rule from '../../../src/rules/no-unused-vars';
Expand Down Expand Up @@ -1228,7 +1227,7 @@ function f() {
},
{
code: '/*global a */',
errors: [definedError('a', '', AST_NODE_TYPES.Program)],
errors: [definedError('a', '')],
},
{
code: `
Expand Down

0 comments on commit 164798e

Please sign in to comment.