Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 23, 2024
1 parent 28d25c8 commit 23af806
Show file tree
Hide file tree
Showing 20 changed files with 911 additions and 281 deletions.
16 changes: 12 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
"impliedStrict": true,
"jsx": true
},
"project": "tsconfig.json"
"project": "packages/connect-ui/tsconfig.json"
},
"rules": {
// unnecessary when bundling
Expand All @@ -230,6 +230,14 @@
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/only-throw-error": "error",
"react/prop-types": "off",
"react/jsx-sort-props": [
"error",
{
"callbacksLast": true,
"shorthandFirst": true,
"reservedFirst": true
}
],
"import/order": [
"error",
{
Expand All @@ -246,16 +254,16 @@
],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"order": "asc"
},
"warnOnUnassignedImports": true,
"pathGroups": [
{
"pattern": "@/**",
"group": "parent",
"group": "parent"
},
{
"pattern": "@nangohq/**",
"pattern": "@nangohq/*",
"group": "internal",
"position": "after"
}
Expand Down
Loading

0 comments on commit 23af806

Please sign in to comment.