Skip to content

Commit 87a2566

Browse files
committed
lint fix
1 parent 719e3e3 commit 87a2566

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

packages/cubejs-schema-compiler/src/adapter/BaseDimension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { BaseQuery } from './BaseQuery';
22
import type { DimensionDefinition, SegmentDefinition } from '../compiler/CubeEvaluator';
3-
import { CubeSymbols } from "../compiler/CubeSymbols";
3+
import { CubeSymbols } from '../compiler/CubeSymbols';
44

55
export class BaseDimension {
66
public readonly expression: any;

packages/cubejs-schema-compiler/src/adapter/BaseMeasure.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { UserError } from '../compiler/UserError';
22
import type { BaseQuery } from './BaseQuery';
33
import { MeasureDefinition } from '../compiler/CubeEvaluator';
4-
import { CubeSymbols } from "../compiler/CubeSymbols";
4+
import { CubeSymbols } from '../compiler/CubeSymbols';
55

66
export class BaseMeasure {
77
public readonly expression: any;

packages/cubejs-schema-compiler/src/adapter/BaseQuery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
timeSeriesFromCustomInterval
2525
} from '@cubejs-backend/shared';
2626

27-
import { CubeSymbols } from "../compiler/CubeSymbols";
27+
import { CubeSymbols } from '../compiler/CubeSymbols';
2828
import { UserError } from '../compiler/UserError';
2929
import { SqlParser } from '../parser/SqlParser';
3030
import { BaseDimension } from './BaseDimension';

packages/cubejs-schema-compiler/src/adapter/BaseSegment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { BaseQuery } from './BaseQuery';
2-
import { CubeSymbols } from "../compiler/CubeSymbols";
2+
import { CubeSymbols } from '../compiler/CubeSymbols';
33

44
export class BaseSegment {
55
public readonly expression: any;

packages/cubejs-schema-compiler/src/adapter/PreAggregations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import R from 'ramda';
22
import { FROM_PARTITION_RANGE, getEnv, TO_PARTITION_RANGE } from '@cubejs-backend/shared';
33

4-
import { CubeSymbols } from "../compiler/CubeSymbols";
4+
import { CubeSymbols } from '../compiler/CubeSymbols';
55
import { UserError } from '../compiler/UserError';
66

77
export class PreAggregations {

packages/cubejs-schema-compiler/test/integration/postgres/pre-aggregations.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ describe('PreAggregations', () => {
678678
await compiler.compile();
679679

680680
const preAggregationId = 'visitors.countAnotherCountCustomGranularity';
681-
const preAggregations = cubeEvaluator.preAggregations({ preAggregationIds: [preAggregationId]});
681+
const preAggregations = cubeEvaluator.preAggregations({ preAggregationIds: [preAggregationId] });
682682

683683
const preAggregation = preAggregations[0];
684684
if (preAggregation === undefined) {

packages/cubejs-schema-compiler/test/unit/pre-agg-time-dim-match.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { PostgresQuery } from '../../src/adapter/PostgresQuery';
22
import { prepareCube } from './PrepareCompiler';
33
import { PreAggregations } from '../../src/adapter/PreAggregations';
4-
import { PreAggregationReferences } from "../../src/compiler/CubeEvaluator";
4+
import { PreAggregationReferences } from '../../src/compiler/CubeEvaluator';
55

66
describe('Pre Aggregation by filter match tests', () => {
77
function getCube(cube) {

0 commit comments

Comments
 (0)