Fix unused vars in JS code

This commit is contained in:
Dmitriy Simushev 2016-06-09 20:55:59 +00:00
parent a56e775ab9
commit e6dfd1dfec
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
"no-trailing-spaces": "error", "no-trailing-spaces": "error",
"semi": ["error", "always"], "semi": ["error", "always"],
"guard-for-in": "error", "guard-for-in": "error",
"no-unused-vars": ["error", {"caughtErrors": "none"}] "no-unused-vars": ["error", {"caughtErrors": "none", "args": "none"}]
}, },
"globals": { "globals": {
"Mibew": true, "Mibew": true,

View File

@ -16,7 +16,7 @@
* limitations under the License. * limitations under the License.
*/ */
(function(Mibew, Backbone, _){ (function(Mibew, Backbone){
/** /**
* @class Represents messages list * @class Represents messages list
@ -54,4 +54,4 @@
} }
); );
})(Mibew, Backbone, _); })(Mibew, Backbone);

View File

@ -115,7 +115,7 @@
} }
]; ];
}, },
function(args) {} function() {}
); );
}); });