diff --git a/download-markdown/download-markdown.js b/download-markdown/download-markdown.js index 81496d7..896951d 100644 --- a/download-markdown/download-markdown.js +++ b/download-markdown/download-markdown.js @@ -120,7 +120,6 @@ export async function downloadMDs(stagedUrls, folderPath, fetchFn = fetch) { * @returns {Promise} A promise that resolves when the download process is complete. */ export function downloadMarkdown(folder, list, locales, siteURL, stagePath, fetchFn = fetch) { - // eslint-disable-next-line arrow-body-style const stagedUrls = list.map((entry) => { const entryPath = entryToPath(entry); return [entryPath, localizeStageUrl(siteURL, entryPath, stagePath, locales)];