From f89a2ed1775d94a1debb3f592a2291c52a4edd4c Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 22 Oct 2020 12:06:48 +0000 Subject: [PATCH] Format code with prettier This commit fixes the style issues introduced in 7a8445b according to the output from prettier. Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/3c443034-2df4-439e-85aa-16c8b3043332/ --- app/scripts/game-scraper.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/scripts/game-scraper.js b/app/scripts/game-scraper.js index 67ba911..37c1852 100644 --- a/app/scripts/game-scraper.js +++ b/app/scripts/game-scraper.js @@ -45,7 +45,7 @@ module.exports.getGameInfo = async function (browser, url) { info = await parsePrefixes(page, info); // Fill status/engines/isMod const structuredText = await getMainPostStructuredText(page); const overview = getOverview(structuredText, info.isMod); - + const parsedInfos = parseConversationPage(structuredText); const previewSource = getGamePreviewSource(page); const changelog = getLastChangelog(page); @@ -108,7 +108,7 @@ module.exports.getGameVersionFromTitle = async function (browser, info) { //#region Private methods /** * Clean a string from invalid File System chars. - * @param {String} s + * @param {String} s * @returns {String} */ function cleanFSString(s) {