diff --git a/.eslintrc.js b/.eslintrc.js index e6c717b..292672c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -24,6 +24,13 @@ module.exports = { 'semi': [ 'error', 'always' + ], + 'prefer-const': [ + 'error', + { + 'destructuring': 'any', + 'ignoreReadBeforeAssign': false + } ] } -}; +}; \ No newline at end of file