From 658d3767acb778e58f3b77e8c5a38d9c868ddee5 Mon Sep 17 00:00:00 2001 From: Jannis Hell Date: Tue, 11 Apr 2023 10:23:09 +0200 Subject: [PATCH] Fix rule conflict (#714) Closes #713 --- config/plugins.cjs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/plugins.cjs b/config/plugins.cjs index 13c37a74..128b451a 100644 --- a/config/plugins.cjs +++ b/config/plugins.cjs @@ -265,6 +265,13 @@ module.exports = { 'import/order': [ 'error', { + groups: [ + 'builtin', + 'external', + 'parent', + 'sibling', + 'index', + ], 'newlines-between': 'never', warnOnUnassignedImports: true, },