Skip to content

Instantly share code, notes, and snippets.

@ger86
Last active February 14, 2021 10:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ger86/1df5f4a0b2a073fbc8cdb8b462838c5f to your computer and use it in GitHub Desktop.
Save ger86/1df5f4a0b2a073fbc8cdb8b462838c5f to your computer and use it in GitHub Desktop.
eslint-plugin-import.config.js
{
"import/order": ['warn', {
'groups': ['builtin', 'external', 'internal', 'parent', 'sibling'],
'alphabetize': {
order: 'asc'
},
"pathGroups": [
{
"pattern": "react",
"group": "builtin",
"position": 'before'
}
],
"pathGroupsExcludedImportTypes": ["builtin"]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment