From 5d5adb8ae04b670337330b29bda669c0b656eae9 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Sun, 3 Nov 2019 10:08:22 +0000 Subject: [PATCH] fix: linting errors License: MIT Signed-off-by: Henrique Dias --- bin/index.js | 10 +++++----- lib/xkcd.js | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/index.js b/bin/index.js index a7b8d12..f3cfdc1 100644 --- a/bin/index.js +++ b/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) diff --git a/lib/xkcd.js b/lib/xkcd.js index ab9a732..a32496f 100644 --- a/lib/xkcd.js +++ b/lib/xkcd.js @@ -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 }