refactor: 代码格式化

This commit is contained in:
digua
2026-01-31 10:06:44 +08:00
parent 58e18326d9
commit f6b4b6dc4c
114 changed files with 1276 additions and 985 deletions

View File

@@ -275,7 +275,7 @@ async function* parseLINE(options: ParseOptions): AsyncGenerator<ParseEvent, voi
// 尝试解析消息行
const msgPattern = useTabSeparator ? PRIVATE_MSG_PATTERN : GROUP_MSG_PATTERN
const msgMatch = line.match(msgPattern)
// 调试前几行
if (debugLogCount < 5 && line.trim()) {
onLog?.('debug', `LINE 行[${i}]: "${line.substring(0, 50)}..." match=${!!msgMatch}`)