-
Notifications
You must be signed in to change notification settings - Fork 10
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
[2주차] 최서연 미션 제출합니다. #6
Open
seoyeon5117
wants to merge
11
commits into
CEOS-Developers:main
Choose a base branch
from
seoyeon5117:seoyeon5117
base: main
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
11 commits
Select commit
Hold shift + click to select a range
9411862
feat: 초기 설정
seoyeon5117 a7e6f1f
feat: 투두리스트 뼈대 구성
seoyeon5117 325bb0f
chore: jsconfig, prettier 설정
seoyeon5117 f5c5435
feat: 투두리스트 기능 구현
seoyeon5117 e19060e
style: 디자인 적용
seoyeon5117 59c1723
feat: 투두리스트 체크 기능 구현 & 디자인
seoyeon5117 cabb845
style: 다크모드 버튼 디자인
seoyeon5117 9af1d40
chore: 스크롤바, 다크모드 토글 색 변경
seoyeon5117 2fe72b2
chore: useEffect 중복된 코드 제거
seoyeon5117 3ef9cb6
chore: 코드리뷰 반영
seoyeon5117 ed86fe2
fix: prettierrc 파일 이름 오타 수정
seoyeon5117 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,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
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,8 @@ | ||
{ | ||
"printWidth": 80, // 한 줄의 최대 길이를 80자로 제한 | ||
"tabWidth": 2, // 들여쓰기 크기를 2칸으로 설정 | ||
"trailingComma": "es5", // es5를 기본값으로 사용하여 모든 배열과 객체의 후행에 쉼표를 입력 | ||
"singleQuote": true, // 문자열에 작은 따옴표 사용 | ||
"jsxSingleQuote": true, // JSX에서 작은 따옴표 사용 | ||
"semi": true // 코드 끝 세미콜론 필수 | ||
} |
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,37 @@ | ||
import js from '@eslint/js' | ||
import globals from 'globals' | ||
import reactHooks from 'eslint-plugin-react-hooks' | ||
import reactRefresh from 'eslint-plugin-react-refresh' | ||
import prettier from 'eslint-config-prettier' | ||
import prettierPlugin from 'eslint-plugin-prettier' | ||
|
||
export default [ | ||
{ ignores: ['dist'] }, | ||
{ | ||
files: ['**/*.{js,jsx}'], | ||
languageOptions: { | ||
ecmaVersion: 2020, | ||
globals: globals.browser, | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
ecmaFeatures: { jsx: true }, | ||
sourceType: 'module', | ||
}, | ||
}, | ||
plugins: { | ||
'react-hooks': reactHooks, | ||
'react-refresh': reactRefresh, | ||
prettier: prettierPlugin, | ||
}, | ||
rules: { | ||
...js.configs.recommended.rules, | ||
...reactHooks.configs.recommended.rules, | ||
'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }], | ||
'react-refresh/only-export-components': [ | ||
'warn', | ||
{ allowConstantExport: true }, | ||
], | ||
'prettier/prettier': 'error', | ||
}, | ||
}, | ||
] |
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,13 @@ | ||
<!doctype html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/x-icon" href="/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Todo List</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
</html> |
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,16 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ESNext", | ||
"baseUrl": "./", | ||
"paths": { | ||
"@/*": ["src/*"], | ||
}, | ||
"types": ["vite/client"], | ||
}, | ||
"include": [ | ||
"src/**/*.js", // 'src' 폴더 내에 있는 모든 JavaScript 파일 포함 | ||
"src/**/*.jsx" // 'src' 폴더 내에 있는 모든 JSX 파일 포함 (React 파일) | ||
], | ||
"exclude": ["node_modules"] | ||
} | ||
|
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.
따로 설정해두신 거 섬세하시네요! ㅎㅎ
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.
헉 근데 지금 보니까 언어가 영어네요 수정해야겠습니다..