Skip to content

Commit

Permalink
feat: cursor-based pagination with TypeORM query builder
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin658 committed Mar 3, 2020
1 parent 26ceb1f commit b721eaf
Show file tree
Hide file tree
Showing 7 changed files with 1,091 additions and 71 deletions.
16 changes: 13 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

{
"parser": "@typescript-eslint/parser",
"plugins": [
Expand All @@ -15,11 +14,22 @@
],
"settings": {
"import/resolver": {
"typescript": {}
"node": {
"extensions": [".ts"]
}
}
},
"rules": {
"no-useless-constructor": "off",
"class-methods-use-this": "off",
"@typescript-eslint/no-explicit-any": "off",
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off"
"import/prefer-default-export": "off",
"import/extensions": [
"error",
{
"ts": "never"
}
]
}
}
Loading

0 comments on commit b721eaf

Please sign in to comment.