You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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:
'import/order': ['error', { groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'] }]
to the.eslintrc.js
rules objectyarn lint --fix
)The text was updated successfully, but these errors were encountered: