Skip to content

Commit

Permalink
feat(typescript): allow unused vars starting with underscores (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
francoischalifour authored and samouss committed Jul 4, 2019
1 parent fafb6e2 commit b3fcb88
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rules/typescript.js
Expand Up @@ -42,6 +42,7 @@ module.exports = {
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
Expand Down

0 comments on commit b3fcb88

Please sign in to comment.