Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mqp committed Feb 28, 2019
1 parent 98365d1 commit 8a2d429
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"rules": {
"no-console": "off",
"no-process-exit": "off",
"no-unused-vars": ["error", { "varsIgnorePattern": "^_" }]
"no-unused-vars": ["error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }]
},
"extends": ["eslint:recommended", "plugin:node/recommended"]
}
1 change: 0 additions & 1 deletion src/reticulum.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ class ReticulumChannel extends EventEmitter {
}
const sender = from || this.getName(session_id);
this.emit('message', session_id, sender, type, body);

});

return new Promise((resolve, reject) => {
Expand Down

0 comments on commit 8a2d429

Please sign in to comment.