Skip to content

Commit

Permalink
feat: fetch registrations with id's from search events (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
naftis authored Sep 6, 2023
1 parent 847f985 commit f568099
Show file tree
Hide file tree
Showing 31 changed files with 4,358 additions and 5,300 deletions.
18 changes: 14 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,19 @@
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-floating-promises": "off"
"@typescript-eslint/no-floating-promises": "off",
"no-restricted-imports": [
"error",
{
"paths": [
{
"name": "lodash",
"message": "Please use lodash/fp instead."
}
],
"patterns": ["lodash/*", "!lodash/fp"]
}
]
},
"ignorePatterns": [
"*.d.ts"
]
"ignorePatterns": ["*.d.ts"]
}
Loading

0 comments on commit f568099

Please sign in to comment.