Skip to content

Commit 9a1b1be

Browse files
committed
chore: lint issues
1 parent b90c836 commit 9a1b1be

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

packages/cubejs-cubestore-driver/src/CubeStoreDriver.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const CubeStoreCapabilityMinVersion = {
2828
} satisfies Record<string, string>;
2929
type CubeStoreCapability = keyof typeof CubeStoreCapabilityMinVersion;
3030

31-
3231
const GenericTypeToCubeStore: Record<string, string> = {
3332
string: 'varchar(255)',
3433
text: 'varchar(255)',
@@ -136,7 +135,7 @@ export class CubeStoreDriver extends BaseDriver implements DriverInterface {
136135
withEntries.push(`delimiter = '${options.delimiter}'`);
137136
}
138137
if (options.disableQuoting) {
139-
withEntries.push(`disable_quoting = true`);
138+
withEntries.push('disable_quoting = true');
140139
}
141140
if (options.buildRangeEnd) {
142141
withEntries.push(`build_range_end = '${options.buildRangeEnd}'`);

packages/cubejs-cubestore-driver/src/WebSocketConnection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ export class WebSocketConnection {
270270
httpParameterValueOffset
271271
);
272272
} else {
273-
throw new Error(`Parameter with type: object is not supported`);
273+
throw new Error('Parameter with type: object is not supported');
274274
}
275275
}
276276
case 'boolean':

0 commit comments

Comments
 (0)