| module.exports = { | |
| extends: 'react-app', | |
| plugins: ['react', 'import'], | |
| rules: { | |
| 'import/order': [ | |
| 'error', | |
| { | |
| groups: [ | |
| 'builtin', | |
| 'external', | |
| 'internal', | |
| 'parent', | |
| 'sibling', | |
| 'index', | |
| ], | |
| pathGroups: [ | |
| { | |
| pattern: 'react*', | |
| group: 'external', | |
| position: 'before', | |
| }, | |
| ], | |
| pathGroupsExcludedImportTypes: ['react'], | |
| alphabetize: { | |
| order: 'asc', | |
| caseInsensitive: true, | |
| }, | |
| }, | |
| ], | |
| }, | |
| } |