🧹 chore(.eslintrc.js): Update Import Order of The React Types (#2964)

This commit is contained in:
Yuichi Oneda 2024-06-05 11:55:42 -07:00 committed by GitHub
parent 0e3e45e77d
commit 4469ba72fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
},