chore: Remove unneeded eslint comments

This commit is contained in:
Cole Bemis 2018-05-17 22:43:41 -07:00
parent 703b1a7882
commit 3183ae1ef6

View File

@ -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);
});
}