Skip to content

컨벤션

youseokhwan edited this page Nov 3, 2021 · 9 revisions

Code

  • SwiftLint 사용
  • 우선 디폴트 설정을 사용하고 추후 상황에 맞게 변경
  • swift-style-guide 지향

Commit Message

  • Udacity Commit Message 컨벤션 기반
[feat] A new feature
[fix] A bug fix
[docs] Changes to documentation
[style] Formatting, missing semi colons, etc; no code change
[refactor] Refactoring production code
[test] Adding tests, refactoring test; no production code change
[chore] Updating build tasks, package manager configs, etc; no production code change
  • style 키워드는 사용안함(refactor나 chore를 대신 사용)
  • header에 파일명은 생략
  • body는 필요하지 않으면 생략
  • 한글로 작성하는 것 허용

Pull Request

.github/PULL_REQUEST_TEMPLATE.md

## 관련 issue

#1

## 작업 내용

- [x] task 1
- [x] task 2
- [ ] task 3

## 기타 사항

- contents

Issue

.github/ISSUE_TEMPLATE/bug_report.md

---
name: Bug report
about: Create a report to help us improve
title: ''
labels: "\U0001F41Bbug"
assignees: ''

---

### 상황
 
1. 홈화면으로 이동한다.
2. 새로고침 버튼을 누른다.
3. 앱종료되는 버그 발생.

### 스크린샷

![]()

### 스마트폰 정보

- 디바이스 : iPhone12
- OS : 15.0.2
- 네트워크 상태 : wifi

### 기타 사항

의견

.github/ISSUE_TEMPLATE/feature_request.md

---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: "✨feature"
assignees: ''

---

### 내용

- contents

데일리 스크럼

## 어제 한 일

- [x] task 1
- [x] task 2
- [ ] task 3

## 오늘 할 일

- task 1
- task 2
- task 3

## 고민 사항

- contents

참고

Clone this wiki locally