Skip to content

Commit

Permalink
fix: ignore no-var in .d.ts files
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfbecker committed Aug 3, 2019
1 parent 4f0fa75 commit c06de5d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,5 +206,11 @@ module.exports = {
'no-undef': 'off',
},
},
{
files: '*.d.ts',
rules: {
'no-var': 'off',
},
},
],
}

0 comments on commit c06de5d

Please sign in to comment.