Skip to content

Commit

Permalink
style: 🎨 apply eslint-plugin-import
Browse files Browse the repository at this point in the history
  • Loading branch information
syoung125 committed May 22, 2024
1 parent 61b7e34 commit eaf2b70
Show file tree
Hide file tree
Showing 92 changed files with 1,477 additions and 12 deletions.
26 changes: 26 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,31 @@
"react/display-name": "off",
"import/no-anonymous-default-export": "off",
"@next/next/no-img-element": "off",
"import/order": [
"error",
{
"newlines-between": "always",
"groups": [
["builtin", "external"],
"internal",
"parent",
"sibling",
"index",
],
"pathGroups": [
{
"pattern": "@src/**",
"group": "internal",
"position": "after",
},
{
"pattern": "react",
"group": "builtin",
"position": "before",
},
],
"pathGroupsExcludedImportTypes": ["react"],
},
],
},
}
Loading

0 comments on commit eaf2b70

Please sign in to comment.