Skip to content

Commit 2fd918a

Browse files
committed
lint
1 parent 30d99c0 commit 2fd918a

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

definitions/output/f1/pages_latest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ publish('pages_latest', {
44
description: 'The latest date from the crawl.pages table',
55
bigquery: {
66
partitionBy: 'date',
7-
clusterBy: ['client', 'is_root_page', 'rank', 'page'],
7+
clusterBy: ['client', 'is_root_page', 'rank', 'page']
88
},
99
tags: ['crawl_complete']
1010
}).preOps(ctx => `

definitions/output/f1/requests_latest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ publish('requests_latest', {
44
description: 'The latest date from the crawl.requests table',
55
bigquery: {
66
partitionBy: 'date',
7-
clusterBy: ['client', 'is_root_page', 'rank', 'type'],
7+
clusterBy: ['client', 'is_root_page', 'rank', 'type']
88
},
99
tags: ['crawl_complete']
1010
}).preOps(ctx => `

definitions/output/sample_data/pages_10k.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ publish('pages_10k', {
99
}).query(ctx => `
1010
SELECT *
1111
FROM ${ctx.ref('crawl', 'pages')}
12-
WHERE date = '${constants.currentMonth}' AND
13-
rank <= 10000
12+
WHERE
13+
date = '${constants.currentMonth}' AND
14+
rank <= 10000
1415
`)

0 commit comments

Comments
 (0)