Skip to content

Instantly share code, notes, and snippets.

@kluplau
Last active January 19, 2022 14:11
Show Gist options
  • Save kluplau/75cc8062ff00d5baf356b405582ad4bd to your computer and use it in GitHub Desktop.
Save kluplau/75cc8062ff00d5baf356b405582ad4bd to your computer and use it in GitHub Desktop.
Install:
npm install --save-dev eslint-plugin-import
Edit Eslint config
{
"plugins": ["import"],
"rules": {
"import/newline-after-import": ["error", { "count": 1 }],
"import/order": [
"error",
{
"newlines-between": "always",
"groups": [
"builtin",
"external",
"internal",
"object",
"parent",
"sibling",
"index"
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment