diff --git a/packages/cursorless-engine/src/scopeProviders/TalonSpokenFormsJsonReader.ts b/packages/cursorless-engine/src/scopeProviders/TalonSpokenFormsJsonReader.ts index 4de24e982f..95b2532f68 100644 --- a/packages/cursorless-engine/src/scopeProviders/TalonSpokenFormsJsonReader.ts +++ b/packages/cursorless-engine/src/scopeProviders/TalonSpokenFormsJsonReader.ts @@ -40,7 +40,9 @@ export class TalonSpokenFormsJsonReader implements TalonSpokenForms { const parentDir = path.dirname(this.spokenFormsPath); await mkdir(parentDir, { recursive: true }); this.disposer.push( - this.fileSystem.watchDir(parentDir, () => this.notifier.notifyListeners()), + this.fileSystem.watchDir(parentDir, () => + this.notifier.notifyListeners(), + ), ); }