mirror of
https://github.com/Mibew/mibew.git
synced 2025-01-31 05:20:30 +03:00
Fix unused vars in JS code
This commit is contained in:
parent
a56e775ab9
commit
e6dfd1dfec
@ -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,
|
||||
|
@ -16,7 +16,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
(function(Mibew, Backbone, _){
|
||||
(function(Mibew, Backbone){
|
||||
|
||||
/**
|
||||
* @class Represents messages list
|
||||
@ -54,4 +54,4 @@
|
||||
}
|
||||
);
|
||||
|
||||
})(Mibew, Backbone, _);
|
||||
})(Mibew, Backbone);
|
@ -115,7 +115,7 @@
|
||||
}
|
||||
];
|
||||
},
|
||||
function(args) {}
|
||||
function() {}
|
||||
);
|
||||
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user