From 4469ba72fccf4835f0bdc73af6c66fd085ced98b Mon Sep 17 00:00:00 2001 From: Yuichi Oneda Date: Wed, 5 Jun 2024 11:55:42 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore(.eslintrc.js):=20Update=20?= =?UTF-8?q?Import=20Order=20of=20The=20React=20Types=20(#2964)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index f974204b86..732b957ff7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -95,7 +95,7 @@ module.exports = { position: 'before', }, ], - pathGroupsExcludedImportTypes: ['builtin'], // Exclude these types from the path group rule + pathGroupsExcludedImportTypes: ['builtin', 'type'], // Exclude these types from the path group rule warnOnUnassignedImports: true, // Warn for unassigned imports // alphabetize: { order: 'asc', caseInsensitive: true }, // Alphabetize imports within each group },