From 3183ae1ef6168644ba3beb79196d0787511763d0 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Thu, 17 May 2018 22:43:41 -0700 Subject: [PATCH] chore: Remove unneeded eslint comments --- bin/sync-algolia.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sync-algolia.js b/bin/sync-algolia.js index edad881..9da4d98 100644 --- a/bin/sync-algolia.js +++ b/bin/sync-algolia.js @@ -26,11 +26,11 @@ function syncAlgolia() { index.clearIndex((err, content) => { if (err) throw err; - console.log(content); // eslint-disable-line no-console + console.log(content); }); index.addObjects(records, (err, content) => { if (err) throw err; - console.log(content); // eslint-disable-line no-console + console.log(content); }); }