Skip to content

Instantly share code, notes, and snippets.

@ManotLuijiu
Created December 3, 2022 06:16
Show Gist options
  • Save ManotLuijiu/63889a8b196e032dbe742bc91b6762d5 to your computer and use it in GitHub Desktop.
Save ManotLuijiu/63889a8b196e032dbe742bc91b6762d5 to your computer and use it in GitHub Desktop.
import/order for eslint
{
"env": { "browser": true, "node": true, "es6": true },
"extends": ["eslint:recommended", "next/core-web-vitals"],
"rules": {
"import/order": [
1,
{
"groups": [
"external",
"builtin",
"internal",
"sibling",
"parent",
"index"
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment