-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[7주차] Team 포토그라운드 강다혜 & 이희원 미션 제출합니다. #4
Open
hiwon-lee
wants to merge
31
commits into
CEOS-Developers:master
Choose a base branch
from
hihi-hye:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
22a8e6c
🛠️ build: init project
hiwon-lee 54ad5f3
Merge branch 'master' of https://github.com/hihi-hye/react-vote-20th
hiwon-lee 8d759cb
🛠️ build: 관련 모듈 설치치
hiwon-lee 28c7553
✨ feat: 회원가입 요소 구현현
hiwon-lee 70d03ea
✨ feat: 필요한 컴퍼넌트 추가가
hiwon-lee b5890b4
📝 docs: assets추가가
hiwon-lee c362ca4
✨ feat: route연결결
hiwon-lee b7004ce
💄 ui: layout, style추가가
hiwon-lee ad9d384
📝 docs: 사용자 model추가가
hiwon-lee 0abcdd2
✨ feat: mocks로 signup 기능 구현현
hiwon-lee 18541c4
💡comment: data넘어온거 확인인
hiwon-lee 1ae96aa
🚚 move: 파일위치이동동
hiwon-lee 10d81f2
🚚 move: 지운파일복원원
hiwon-lee 5bfe41b
🐛 fix: 파일 이동하면서 에러나는 부분 수정정
hiwon-lee 6622ddc
🚚 move: 안쓰는 파일 삭제제
hiwon-lee 92d2d72
✨ feat: 카드 컴퍼넌트 생성
hiwon-lee a6dd5e3
📝 docs: 데이터 추가가
hiwon-lee 75737c3
✨ feat: 투표 절차 연결결
hiwon-lee 16dc1a7
🚚 move: 드롭다운박스 이름 변경경
hiwon-lee 322c725
💄 ui: 페이지 높이 수정
psst54 3afaadc
🐛 fix: Input 타입 수정
psst54 f3d0f1c
✨ feat: 회원가입
psst54 2d0d70d
✨ feat: 로그인
psst54 22a273c
💄 ui: 투표 페이지 UI
psst54 eaefd02
[fix] build 에러 수정
psst54 8ce8e1d
✨ feat: 투표 기능 (구현중)
psst54 faa7ff4
💄 ui: fe 투표 결과 받아오기
psst54 58d518d
✨ feat: BE 투표 및 결과 불러오기
psst54 03afe26
✨ feat: 데모데이 투표 및 결과 확인
psst54 f5dd01e
✨ feat: 에러처리리
hiwon-lee a915c8e
🐛 fix: server action 관련 에러 수정
psst54 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
text eol=lf | ||
*.js eol=lf | ||
*.jsx eol=lf | ||
*.ts eol=lf | ||
*.tsx eol=lf | ||
*.json eol=lf | ||
*.html eol=lf | ||
*.css eol=lf | ||
*.scss eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.* | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/versions | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
# env files (can opt-in for committing if needed) | ||
.env* | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { dirname } from "path"; | ||
import { fileURLToPath } from "url"; | ||
import { FlatCompat } from "@eslint/eslintrc"; | ||
|
||
const __filename = fileURLToPath(import.meta.url); | ||
const __dirname = dirname(__filename); | ||
|
||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
}); | ||
|
||
const eslintConfig = [ | ||
...compat.extends("next/core-web-vitals", "next/typescript"), | ||
{ | ||
rules: { | ||
...prettier.rules, // Prettier 규칙 추가 | ||
}, | ||
}, | ||
]; | ||
|
||
export default eslintConfig; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import type { NextConfig } from "next"; | ||
|
||
const nextConfig: NextConfig = { | ||
/* config options here */ | ||
}; | ||
|
||
export default nextConfig; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이렇게 코드를 변경해보시면 어떨까요? 그 전에 save dev 옵션으로
eslint-config-prettier
설치해주시는 것 잊지 마시구요!