chore: suppress no-console ESLint rule

Suppresses this rule until logging framework integrated.
This commit is contained in:
Igor Gassmann 2018-03-20 15:49:08 -04:00
parent a15192db03
commit 8267a5caea

View file

@ -100,6 +100,7 @@ const init = () => {
});
autoUpdater.on('error', (error) => {
// eslint-disable-next-line no-console
console.error(error.message)
});