From 7ebdc0e851e0bc50190ddbcbf1a5369bd84e9b28 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 17 Jul 2019 13:11:49 +0200 Subject: [PATCH] chore: enforce import destructure order --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 5667fedb2..126d7b57a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -26,6 +26,7 @@ module.exports = { 'error', { VariableDeclarator: { array: true, object: true } }, ], + 'sort-imports': ['error', { ignoreDeclarationSort: true }], 'prettier/prettier': 'error', 'node/no-unsupported-features/es-syntax': 'off', 'node/no-unsupported-features/es-builtins': 'error',