-
Notifications
You must be signed in to change notification settings - Fork 1
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
타이어 만들기 페이지 구현 - 패턴 선택 close #16 #21
Conversation
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.
수고하셨어요~! PR 늦게 봐서 죄송합니당ㅎㅎ
if (subject && !/[^\.] #[0-9]+$/.test(subject)) { | ||
return [ | ||
false, | ||
'subject는 issue 번호를 #[number] 형식으로 끝에 포함해야하며, .(점) 으로 끝나지 말아야 합니다.', |
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.
본문의 한 줄은 72자로 제한한다. 와 같은 규칙은 어디에 쓰이는 건가요?
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.
commit에 header(우리가 -m 옵션을 통해 일반적으로 사용하는 거)말고, body를 통해 commit의 내용을 보다 상세하게 작성할 수 있는데 그 것의 한 줄의 최대 길이를 설정하는 옵션이예요.
우리 팀은 header만 작성하기로 했으니 사실 지장없는 옵션입니다 ㅎㅎ
Motivation
Problem Solving
To Reviewers