Skip to content

Commit

Permalink
(eslint) add no-param-reassign
Browse files Browse the repository at this point in the history
  • Loading branch information
vinogradov committed Mar 5, 2018
1 parent 8300329 commit 23ee5fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ module.exports = {
'react/jsx-filename-extension': ['off'],
'max-lines': ['error', {max: 600, skipBlankLines: true, skipComments: true}],
"import/prefer-default-export": ['off'],
"import/named": ['error']
"import/named": ['error'],
"no-param-reassign": ['off']
},
settings: {
'import/resolver': 'webpack'
Expand Down

0 comments on commit 23ee5fd

Please sign in to comment.