Skip to content

Commit

Permalink
#210-bug-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaAvramenko committed Feb 10, 2024
2 parents 715e929 + fcfe1c9 commit 60dde1e
Show file tree
Hide file tree
Showing 181 changed files with 1,203 additions and 316 deletions.
36 changes: 34 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,39 @@
},
"plugins": [
"@typescript-eslint",
"react"
"react",
"import"
],
"rules": {}
"rules": {
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"parent",
"sibling",
"index",
"object"
],
"pathGroups": [
{
"pattern": "react*",
"group": "external",
"position": "before"
},
{
"pattern": "@/**/**",
"group": "parent",
"position": "before"
}
],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
]
}
}
Loading

0 comments on commit 60dde1e

Please sign in to comment.