fix: linting errors
License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com>
This commit is contained in:
parent
396de4ea0f
commit
5d5adb8ae0
10
bin/index.js
10
bin/index.js
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user