Skip to content

Commit

Permalink
allow object spread in eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ubergesundheit committed Feb 5, 2018
1 parent 1727dbf commit 85abb80
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ module.exports = {
es6: true,
node: true
},
parserOptions: {
ecmaVersion: 2018,
ecmaFeatures: {
experimentalObjectRestSpread: true
}
},
extends: ['@sensebox/eslint-config-sensebox'],
rules: {
complexity: ['warn', 20]
Expand Down

0 comments on commit 85abb80

Please sign in to comment.