Skip to content

Commit 6449c41

Browse files
committed
Apply linter
1 parent 44819e1 commit 6449c41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/app/mocks/index.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,19 +128,19 @@
128128
const unmocked = {rss}
129129

130130
//Mock rss feed
131-
rss.prototype.parseURL = function (url) {
131+
rss.prototype.parseURL = function(url) {
132132
console.debug(`metrics/compute/mocks > mocking rss feed result > ${url}`)
133133
return ({
134134
items:new Array(30).fill(null).map(_ => ({
135135
title:faker.lorem.sentence(),
136136
link:faker.internet.url(),
137137
content:faker.lorem.paragraphs(),
138138
contentSnippet:faker.lorem.paragraph(),
139-
isoDate:faker.date.recent()
139+
isoDate:faker.date.recent(),
140140
})),
141141
title:faker.lorem.words(),
142142
description:faker.lorem.paragraph(),
143-
link:url
143+
link:url,
144144
})
145145
}
146146
}

0 commit comments

Comments
 (0)