Skip to content

Commit eaabd2b

Browse files
authored
Merge pull request #2 from beryu/add-package
🔧 Add package mark and sort marks
2 parents 3f79d22 + c07b443 commit eaabd2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CommitMark/Services/MarkService.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,18 @@ final class MarkService {
2424
private static var defaultMarks: [Mark] {
2525
return[
2626
Mark(code: ":heavy_plus_sign:", description: "➕ 機能を追加したとき"),
27+
Mark(code: ":wrench:", description: "🔧 仕様を変更したとき"),
2728
Mark(code: ":art:", description: "🎨 コードの可読性や保守性を改善したとき"),
2829
Mark(code: ":racehorse:", description: "🐎 パフォーマンスを改善したとき"),
2930
Mark(code: ":bug:", description: "🐛 バグを修正したとき"),
3031
Mark(code: ":arrow_up:", description: "🔼 バージョンを上げたとき"),
3132
Mark(code: ":arrow_down:", description: "🔽 バージョンを下げたとき"),
3233
Mark(code: ":bird:", description: "🐦 Swift化をしたとき"),
3334
Mark(code: ":fire:", description: "🔥 コードやファイルを削除したとき"),
35+
Mark(code: ":package:", description: "📦 ファイルを移動したとき"),
3436
Mark(code: ":shirt:", description: "👕 warningを取り除いた時"),
3537
Mark(code: ":white_check_mark:", description: "✅ テストを追加・編集したとき"),
3638
Mark(code: ":memo:", description: "📝 ドキュメントを書いたとき"),
37-
Mark(code: ":wrench:", description: "🔧 仕様を変更したとき"),
3839
Mark(code: ":ok:", description: "🆗 なにかOKな変更をしたとき")
3940
]
4041
}

0 commit comments

Comments
 (0)