diff --git a/plugin/src/sync-operations/syncer.ts b/plugin/src/sync-operations/syncer.ts index f5f4883..e23e692 100644 --- a/plugin/src/sync-operations/syncer.ts +++ b/plugin/src/sync-operations/syncer.ts @@ -640,6 +640,12 @@ export class Syncer { ); return; } + if (!this.operations.isFileEligibleForSync(relativePath)) { + Logger.getInstance().info( + `File ${relativePath} is not eligible for syncing` + ); + return; + } Logger.getInstance().debug(`Syncing ${relativePath}`); await waitForDocumentLock(relativePath);