mirror of
https://github.com/Mibew/mibew.git
synced 2025-05-08 21:33:07 +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",
|
"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,
|
||||||
|
@ -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);
|
@ -115,7 +115,7 @@
|
|||||||
}
|
}
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
function(args) {}
|
function() {}
|
||||||
);
|
);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user