Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
chore(eslint): ignore legit error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Nov 26, 2018
1 parent b763e1f commit 7c68228
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/util/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ function readAddonEmberVersion() {
return emberVersion;
}
catch (e) {
// eslint-disable-next-line no-console
console.error(e);
throw new Error('Problem getting dependency version for ember');
}
Expand All @@ -48,6 +49,7 @@ function readAddonDependencyVersion(depName) {
return depVersion;
}
catch (e) {
// eslint-disable-next-line no-console
console.error(e);
throw new Error('Problem getting dependency version for "' + depName + '"');
}
Expand Down

0 comments on commit 7c68228

Please sign in to comment.