Skip to content

Commit

Permalink
Implement infinite scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
pahans committed May 20, 2024
1 parent bcfe737 commit 6fabb30
Show file tree
Hide file tree
Showing 12 changed files with 439 additions and 54 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
"next/core-web-vitals",
"plugin:storybook/recommended"
],

"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"globals": {
"React": true,
"describe": true,
Expand All @@ -15,6 +22,8 @@
"jest": true
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"react/self-closing-comp": "error",
"no-extra-boolean-cast": "off",
"sort-imports": [
Expand Down
Loading

0 comments on commit 6fabb30

Please sign in to comment.