-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from SOPT-all/develop
[Test] 메인 머지 테스트
- Loading branch information
Showing
59 changed files
with
7,061 additions
and
191 deletions.
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,35 @@ | ||
name: "버그 수정" | ||
description: 버그 수정 사항을 작성해주세요. | ||
title: "[ Bug ] " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
작성 예시 : "[ Bug ] 로그인 기능 버그 수정" | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: 🐛 Issue | ||
description: 버그가 발생한 이슈 이름과 번호를 작성해주세요. | ||
placeholder: "[ Feat ] 로그인 기능 구현 <#1>" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: textarea_description | ||
attributes: | ||
label: 🐝 버그 발생 부분 | ||
description: 버그가 발생한 부분을 작성해주세요. | ||
placeholder: | | ||
1. <버그 설명 1> | ||
2. <버그 설명 2> | ||
render: "" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: fix-list | ||
attributes: | ||
label: 📝 To-do | ||
description: 작업에 필요한 목록을 작성해주세요. | ||
placeholder: 목록을 작성해주세요. | ||
validations: | ||
required: 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,32 @@ | ||
name: "기능 추가" | ||
description: 기능 추가 작업 사항을 작성해주세요. | ||
title: "[ Feat ] " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
작성 예시 : "[ Feat ] 로그인 기능 구현" | ||
- type: textarea | ||
id: feat-description | ||
attributes: | ||
label: 🛠 Issue | ||
description: 어떠한 기능을 추가하시는 건지 작성해주세요. | ||
placeholder: 설명을 작성해주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feat-list | ||
attributes: | ||
label: 📝 To-do | ||
description: 작업에 필요한 목록을 작성해주세요. | ||
placeholder: 목록을 작성해주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: 🔍 접근 방법 | ||
description: 고려하신 방법이나, 접근에 대해서 설명해주세요. | ||
placeholder: 설명을 작성해주세요. | ||
validations: | ||
required: 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,32 @@ | ||
name: "리팩토링" | ||
description: 리팩토링 작업 사항을 작성해주세요. | ||
title: "[ Refactor ] " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
작성 예시 : "[ Refactor ] 로그인 기능 리팩토링" | ||
- type: textarea | ||
id: refactor-description | ||
attributes: | ||
label: ♻️ Issue | ||
description: 어떠한 기능을 리팩토링하시는 건지 작성해주세요. | ||
placeholder: 설명을 작성해주세요. | ||
validations: | ||
required: true | ||
- type: input | ||
id: input_parent | ||
attributes: | ||
label: 🔢 리팩토링하는 이슈를 기입해주세요. | ||
description: 리팩토링을 진행하는 이전 이슈를 작성해주세요. | ||
placeholder: "#이슈번호" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: refactor-list | ||
attributes: | ||
label: 📝 To-do | ||
description: 작업에 필요한 목록을 작성해주세요. | ||
placeholder: 목록을 작성해주세요. | ||
validations: | ||
required: 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,34 @@ | ||
<!-- PR의 제목은 "[Feat/#1] 로그인 기능 추가" 와 같이 작성해주세요! --> | ||
|
||
## 📌 관련 이슈번호 | ||
|
||
<!-- Closes 키워드가 있어야 PR이 머지되었을 때 이슈가 자동으로 닫힙니다. --> | ||
|
||
- Closes # | ||
|
||
## 🎟️ PR 유형 | ||
|
||
어떤 변경 사항이 있나요? | ||
|
||
- [ ] 새 기능 추가 | ||
- [ ] 버그 수정 | ||
- [ ] CSS 등 사용자 UI 디자인 변경 | ||
- [ ] 리팩토링 | ||
|
||
## ✅ Key Changes | ||
|
||
> 이번 PR에서 작업한 내용을 간략히 설명해주세요 | ||
1. 작업 내용 | ||
|
||
## 📢 To Reviewers | ||
|
||
- | ||
|
||
## 📸 스크린샷 | ||
|
||
<!-- 이해하기 쉽도록 스크린샷을 첨부해주세요. --> | ||
|
||
## 🔗 참고 자료 | ||
|
||
<!-- 참고 레퍼런스를 첨부해주세요. --> |
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 |
---|---|---|
|
@@ -22,3 +22,5 @@ dist-ssr | |
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
*storybook.log |
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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn lint-front |
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 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"printWidth": 80, | ||
"semi": true, | ||
"bracketSpacing": true, | ||
"tabWidth": 2, | ||
"endOfLine": "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,16 @@ | ||
import type { StorybookConfig } from '@storybook/react-vite'; | ||
|
||
const config: StorybookConfig = { | ||
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'], | ||
addons: [ | ||
'@storybook/addon-onboarding', | ||
'@storybook/addon-essentials', | ||
'@chromatic-com/storybook', | ||
'@storybook/addon-interactions', | ||
], | ||
framework: { | ||
name: '@storybook/react-vite', | ||
options: {}, | ||
}, | ||
}; | ||
export default config; |
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 @@ | ||
<link rel="stylesheet" href="./src/styles/fonts/fonts.css" /> |
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,26 @@ | ||
import type { Preview } from '@storybook/react'; | ||
import React from 'react'; | ||
import { ThemeProvider, Global } from '@emotion/react'; | ||
import GlobalStyle from '../src/styles/global'; | ||
import theme from '../src/styles/theme'; | ||
|
||
const preview: Preview = { | ||
parameters: { | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/i, | ||
}, | ||
}, | ||
}, | ||
decorators: [ | ||
(Story) => ( | ||
<ThemeProvider theme={theme}> | ||
<Global styles={GlobalStyle} /> | ||
<Story /> | ||
</ThemeProvider> | ||
), | ||
], | ||
}; | ||
|
||
export default preview; |
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,6 @@ | ||
declare module "*.svg" { | ||
import React from "react"; | ||
export const ReactComponent: React.FC<React.SVGProps<SVGSVGElement>>; | ||
const src: string; | ||
export default src; | ||
} |
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
Oops, something went wrong.