Skip to content

Commit

Permalink
[Fix] no-duplicates: Exclude typescript-eslint-parser
Browse files Browse the repository at this point in the history
  • Loading branch information
kmui2 committed Mar 12, 2020
1 parent 1eeb966 commit f6502b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/src/rules/no-duplicates.js
Expand Up @@ -401,7 +401,9 @@ ruleTester.run('no-duplicates', rule, {
})

context('TypeScript', function() {
getNonDefaultParsers().forEach((parser) => {
getNonDefaultParsers()
.filter((parser) => parser !== require.resolve('typescript-eslint-parser'))
.forEach((parser) => {
const parserConfig = {
parser: parser,
settings: {
Expand Down

0 comments on commit f6502b0

Please sign in to comment.