From 05b47e27d90445aeb437773b0ad06c045be77bb0 Mon Sep 17 00:00:00 2001 From: Maribeth Bottorff Date: Thu, 31 Mar 2022 14:34:33 -0700 Subject: [PATCH] chore: fix screenshot lint (#6056) * chore: fix screenshot lint * chore: remove extra space --- tests/playgrounds/screenshot.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/playgrounds/screenshot.js b/tests/playgrounds/screenshot.js index 59d0594e2..6b2b22e3e 100644 --- a/tests/playgrounds/screenshot.js +++ b/tests/playgrounds/screenshot.js @@ -91,6 +91,7 @@ function workspaceToSvg_(workspace, callback, customCss) { svgToPng_(data, width, height, callback); } +/* eslint-disable no-unused-vars */ /** * Download a screenshot of the blocks on a Blockly workspace. * @param {!Blockly.WorkspaceSvg} workspace The Blockly workspace. @@ -106,3 +107,4 @@ function downloadScreenshot(workspace) { a.parentNode.removeChild(a); }); } +/* eslint-enable */