We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1a24350 + 921929f commit bf18aa1Copy full SHA for bf18aa1
backend/src/markdown/builders/git-convention.builder.ts
@@ -77,10 +77,7 @@ export class GitConventionBuilder implements ISectionBuilder {
77
lines.push('<summary>허용된 커밋 타입(Commit Types) 보기</summary>');
78
lines.push('<div markdown=”1”>');
79
lines.push('');
80
- let commits = '';
81
- commitTypes.forEach((type) => {
82
- commits += `\`${type}\`, `;
83
- });
+ const commits = commitTypes.map((type) => `\`${type}\``).join(', ');
84
lines.push(commits);
85
86
lines.push('</div>');
0 commit comments