Skip to content

Commit

Permalink
Fix unused vars in JS code
Browse files Browse the repository at this point in the history
  • Loading branch information
JustBlackBird committed Jun 9, 2016
1 parent a56e775 commit e6dfd1d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"no-trailing-spaces": "error",
"semi": ["error", "always"],
"guard-for-in": "error",
"no-unused-vars": ["error", {"caughtErrors": "none"}]
"no-unused-vars": ["error", {"caughtErrors": "none", "args": "none"}]
},
"globals": {
"Mibew": true,
Expand Down
4 changes: 2 additions & 2 deletions src/mibew/js/source/thread_log/collections/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

(function(Mibew, Backbone, _){
(function(Mibew, Backbone){

/**
* @class Represents messages list
Expand Down Expand Up @@ -54,4 +54,4 @@
}
);

})(Mibew, Backbone, _);
})(Mibew, Backbone);
2 changes: 1 addition & 1 deletion src/mibew/js/source/users/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
}
];
},
function(args) {}
function() {}
);

});
Expand Down

0 comments on commit e6dfd1d

Please sign in to comment.