From b0e29be1b594299426797c38ad081cca2dbc8a64 Mon Sep 17 00:00:00 2001 From: Isaac Date: Thu, 20 May 2021 19:06:42 +0100 Subject: [PATCH] order --- .eslintrc.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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