diff --git a/.eslintrc.js b/.eslintrc.js index 292672c..ea35858 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,6 +17,13 @@ module.exports = { 'warn', 'windows' ], + 'prefer-const': [ + 'error', + { + 'destructuring': 'any', + 'ignoreReadBeforeAssign': false + } + ], 'quotes': [ 'error', 'single' @@ -25,12 +32,5 @@ module.exports = { 'error', 'always' ], - 'prefer-const': [ - 'error', - { - 'destructuring': 'any', - 'ignoreReadBeforeAssign': false - } - ] } }; \ No newline at end of file