Skip to content

Commit

Permalink
feat: 스크롤 기능 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jin-h-bang committed Apr 22, 2023
2 parents 78386e9 + 0c5e5d5 commit fe9aad7
Show file tree
Hide file tree
Showing 16 changed files with 3,424 additions and 2,953 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,15 @@ module.exports = {
// packagePath: './package.json',
// },
// ],
'no-nested-ternary': 'off',
'no-use-before-define': 'off', // 정의되기 전에 사용하는 것을 금지하는 규칙을 끈다
'import/extensions': 'off', // 모듈 import 시 파일 확장자를 생략할 수 있도록 한다
'import/no-unresolved': 'off', // 경로가 올바르게 해결되지 않는 모듈 import를 허용한다
'import/prefer-default-export': 'off', // 단일 export가 있는 경우 기본 export를 선호하는 규칙을 끈다
'react-hooks/rules-of-hooks': 'error', // 훅의 규칙을 준수하도록 강제한다 (에러로 표시)
'react-hooks/exhaustive-deps': 'warn', // 훅의 의존성을 검사하고 경고를 표시한다
'react/jsx-props-no-spreading': 'off', // JSX 속성 전개를 허용한다
'no-unused-vars': 'off', // 사용하지 않는 변수를 허용한다
'no-unused-vars': 'off', // 사용하지 않는 변수를 허용하지 않는다
'@typescript-eslint/no-unused-vars': 'off', // 사용하지 않는 변수를 허용한다 (TypeScript)
'react/require-default-props': 'off',
'@typescript-eslint/no-use-before-define': ['error'], // TypeScript에서 정의되기 전에 사용하는 것을 에러로 표시한다
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
/.pnp
.pnp.js
.env

# testing
/coverage
Expand Down
Loading

0 comments on commit fe9aad7

Please sign in to comment.