fix: linting errors

License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
This commit is contained in:
Henrique Dias 2019-11-03 10:08:22 +00:00
parent 396de4ea0f
commit 5d5adb8ae0
No known key found for this signature in database
GPG Key ID: EE928B18BCFBF9A9
2 changed files with 6 additions and 6 deletions

View File

@ -44,12 +44,12 @@ async function run () {
console.log(`😊 Going to clone XKCD to ${argv.dir}`)
let added = []
let errored = []
const errored = []
let latest = null
try {
console.log(`🔍 Finding the latest comic`)
console.log('🔍 Finding the latest comic')
latest = await getLatestId()
console.log(`😁 Found! We're on comic number ${latest}!`)
@ -75,7 +75,7 @@ async function run () {
let comic = null
let info = {
const info = {
id: i,
dir: dir,
num: num
@ -113,9 +113,9 @@ async function run () {
}
if (errored.length === 0) {
progress(`📦 All comics fetched\n`)
progress('📦 All comics fetched\n')
} else {
progress(`📦 Some comics fetched\n`)
progress('📦 Some comics fetched\n')
}
added = added.sort((a, b) => a.num - b.num)

View File

@ -2,7 +2,7 @@ const fetch = require('node-fetch')
const path = require('path')
async function getLatestId () {
const raw = await fetch(`https://xkcd.com/info.0.json`)
const raw = await fetch('https://xkcd.com/info.0.json')
const data = await raw.json()
return data.num
}