Skip to content

Commit

Permalink
style(lint): fixing future lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fishcharlie committed Feb 17, 2019
1 parent 8da9041 commit 77fbdad
Show file tree
Hide file tree
Showing 22 changed files with 3,810 additions and 3,934 deletions.
373 changes: 182 additions & 191 deletions lib/Attribute.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/Listener.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function Listener(type, stage, func, plugin) {
function Listener (type, stage, func, plugin) {
this.type = type;
this.stage = stage;
this.func = func;
Expand All @@ -21,7 +21,7 @@ Listener.prototype.emit = async function (type, stage, obj) {
return result;
} catch (e) {
this._debug(`Error running emit on plugin ${obj.plugin.name}`);
return;

}
};

Expand Down

0 comments on commit 77fbdad

Please sign in to comment.