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

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent fafb6e2 commit b3fcb88
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rules/typescript.js
Original file line number Diff line number Diff line change
@@ -42,6 +42,7 @@ module.exports = {
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],

0 comments on commit b3fcb88

Please sign in to comment.