Description
we should be using ["builtin", "external", "internal", "parent", "sibling", "index"] instead of the airbnb defaults as the current setup is a bit too loose in how to order imports.
We will need to:
- add
'import/order': ['error', { groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'] }] to the .eslintrc.js rules object
- fix any potential errors that will arise (just run
yarn lint --fix)