From f4f5d68fba5c6a28d76a8705d566ce6ec4152836 Mon Sep 17 00:00:00 2001 From: Justin Silvestre Date: Sun, 24 Nov 2024 16:43:36 +0100 Subject: [PATCH] Warn on import order lint notice --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index d5815af6..4ca926f9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -79,7 +79,7 @@ module.exports = { rules: { "import/no-cycle": "error", "import/order": [ - "error", + "warn", { alphabetize: { caseInsensitive: true, order: "asc" }, groups: ["builtin", "external", "internal", "parent", "sibling"],