Skip to content

Commit 9cf0d43

Browse files
committed
fix(backend): suppress unused parameter lint error in V2 adapter wrapper
1 parent 0b9f5f6 commit 9cf0d43

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

packages/backend/src/syncServer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ adapterRegistry.register("openspp-v2-adapter", (deps) => {
7171
}),
7272
initialize: async () => { await adapter.authenticate(); },
7373
healthCheck: async (): Promise<HealthCheckResult> => ({ healthy: true, message: "OpenSPP V2 REST adapter" }),
74+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
7475
push: async (_entities: EntityPushPayload[]): Promise<SyncResult> => {
7576
const start = Date.now();
7677
await adapter.pushData();

0 commit comments

Comments
 (0)