Skip to content
This repository has been archived by the owner on Nov 19, 2019. It is now read-only.

Commit

Permalink
fix(typescript): disable return-type for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewLeedham committed Apr 24, 2019
1 parent ffbaef5 commit 914f555
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,11 @@ module.exports = {
}
},
{
files: ['*.test.{js,ts}'],
files: ['*.test.{tsx,ts}'],
rules: {
'require-jsdoc': 'off',
'@typescript-eslint/no-explicit-any': 'off'
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-function-return-type': 'off'
}
}
],
Expand Down

0 comments on commit 914f555

Please sign in to comment.