Skip to content

Commit

Permalink
fix: added "unicorn/catch-error-name" rule
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Sep 30, 2018
1 parent 7a670de commit 7e11042
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ module.exports = {
'capitalized-comments': 'off',
camelcase: 'off',
'no-warning-comments': 'off',
'ava/no-todo-test': 'off'
'ava/no-todo-test': 'off',
'unicorn/catch-error-name': [
'error',
{
name: 'err'
}
]
}
};

0 comments on commit 7e11042

Please sign in to comment.