commitbee 0.6.0

AI-powered commit message generator using tree-sitter semantic analysis and local LLMs
Documentation
diff --git a/src/utils/format.ts b/src/utils/format.ts
index abc1234..def5678 100644
--- a/src/utils/format.ts
+++ b/src/utils/format.ts
@@ -1,10 +1,10 @@
-export function formatDate(date: Date): string{
-  const year = date.getFullYear()
-  const month = String(date.getMonth() + 1).padStart(2, '0')
-  const day = String(date.getDate()).padStart(2, '0')
-  return `${year}-${month}-${day}`
+export function formatDate(date: Date): string {
+  const year = date.getFullYear();
+  const month = String(date.getMonth() + 1).padStart(2, "0");
+  const day = String(date.getDate()).padStart(2, "0");
+  return `${year}-${month}-${day}`;
 }

-export function formatTime(date: Date): string{
-  return date.toISOString().slice(11, 19)
+export function formatTime(date: Date): string {
+  return date.toISOString().slice(11, 19);
 }