Created
December 3, 2022 06:16
-
-
Save ManotLuijiu/63889a8b196e032dbe742bc91b6762d5 to your computer and use it in GitHub Desktop.
import/order for eslint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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