From 11213f758527a0012528b006c898bc76abe2ee2e Mon Sep 17 00:00:00 2001 From: fero Date: Wed, 3 Apr 2024 22:37:55 -0700 Subject: [PATCH] chore(prettier): ensure @/lib and @feature are correctly sorted --- .prettierrc.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.prettierrc.json b/.prettierrc.json index 52f72e32c..b41e4101d 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -8,10 +8,12 @@ "importOrder": [ "^@/components/(.*)$", "^@/hoc/(.*)$", + "^@/lib/(.*)$", "^@/api/(.*)$", "^@/state(.*)$", "^@/state/(.*)$", "^@/plugins/(.*)$", + "^@feature/(.*)$", "^[./]" ], "importOrderSeparation": true,