Skip to content

Commit 5902099

Browse files
committed
make linter happy
1 parent ba5a43e commit 5902099

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/cubejs-server-core/src/core/server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class CubejsServerCore {
126126

127127
protected readonly orchestratorStorage: OrchestratorStorage = new OrchestratorStorage();
128128

129-
protected repositoryFactory: ((context: RequestContext) => SchemaFileRepository) | (() => FileRepository);
129+
protected repositoryFactory: ((_context: RequestContext) => SchemaFileRepository) | (() => FileRepository);
130130

131131
protected contextToDbType: DbTypeAsyncFn;
132132

@@ -162,7 +162,7 @@ export class CubejsServerCore {
162162

163163
protected apiGatewayInstance: ApiGateway | null = null;
164164

165-
public readonly event: (name: string, props?: object) => Promise<void>;
165+
public readonly event: (_name: string, _props?: object) => Promise<void>;
166166

167167
public projectFingerprint: string | null = null;
168168

packages/cubejs-server-core/test/unit/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class CubejsServerCoreOpen extends CubejsServerCore {
2626

2727
public pubScheduledRefreshTimeZones(ctx: any) {
2828
return this.scheduledRefreshTimeZones(ctx);
29-
};
29+
}
3030
}
3131

3232
const repositoryWithoutPreAggregations: SchemaFileRepository = {

0 commit comments

Comments
 (0)