Skip to content

Commit

Permalink
Add ignore deconstruct, because it's useful for removing properties
Browse files Browse the repository at this point in the history
  • Loading branch information
flamerohr committed Jan 22, 2018
1 parent 18baa66 commit d1ede14
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ module.exports = {
'no-unused-vars': [
'error',
{
'vars': 'local'
'vars': 'local',
'ignoreRestSiblings': true
}
],
// increased to error because it's strongly discouraged
Expand Down Expand Up @@ -100,7 +101,7 @@ module.exports = {
],
'no-prototype-builtins': [
'off'
],
],
}),
'settings': {
'import/extensions': [
Expand Down

0 comments on commit d1ede14

Please sign in to comment.