Skip to content

Instantly share code, notes, and snippets.

@luizwhite
Last active February 26, 2022 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luizwhite/fe7da68943c938fe83792cd5dd3f1ce1 to your computer and use it in GitHub Desktop.
Save luizwhite/fe7da68943c938fe83792cd5dd3f1ce1 to your computer and use it in GitHub Desktop.
Next.js Eslint Config
{
"extends": ["next/core-web-vitals", "plugin:prettier/recommended"],
"plugins": ["import-helpers"],
"rules": {
"import-helpers/order-imports": [
"warn",
{
"newlinesBetween": "always",
"groups": [
"module",
"absolute",
"/^@/(?!.*assets).*/",
"/^@/assets/",
["parent", "sibling", "index"]
],
"alphabetize": { "order": "asc", "ignoreCase": true }
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment