fix(comment-checker): defer CLI download and cleanup scheduler to first tool call

This commit is contained in:
Sisyphus
2026-04-18 14:09:43 +09:00
parent 493e37bb7d
commit e599840fba
2 changed files with 13 additions and 3 deletions
@@ -0,0 +1,7 @@
let initialized = false
export function ensureCommentCheckerInitialization(initializer: () => void): void {
if (initialized) return
initialized = true
initializer()
}