Skip to content

Commit 23ee5fd

Browse files
author
vinogradov
committed
(eslint) add no-param-reassign
1 parent 8300329 commit 23ee5fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.eslintrc.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ module.exports = {
1010
'react/jsx-filename-extension': ['off'],
1111
'max-lines': ['error', {max: 600, skipBlankLines: true, skipComments: true}],
1212
"import/prefer-default-export": ['off'],
13-
"import/named": ['error']
13+
"import/named": ['error'],
14+
"no-param-reassign": ['off']
1415
},
1516
settings: {
1617
'import/resolver': 'webpack'

0 commit comments

Comments
 (0)