fix linting errors

This commit is contained in:
Sebastian McKenzie
2014-11-04 15:53:11 +11:00
parent 287cbbb6a1
commit d7ae3b506a
18 changed files with 87 additions and 61 deletions

View File

@@ -1,14 +1,14 @@
module.exports = IgnoreFormatter;
function IgnoreFormatter(file) {
function IgnoreFormatter() {
}
IgnoreFormatter.prototype.import = function (node, nodes) {
IgnoreFormatter.prototype.import = function () {
};
IgnoreFormatter.prototype.importSpecifier = function (specifier, node, nodes) {
IgnoreFormatter.prototype.importSpecifier = function () {
};
@@ -16,6 +16,6 @@ IgnoreFormatter.prototype.export = function (node, nodes) {
nodes.push(node.declaration);
};
IgnoreFormatter.prototype.exportSpecifier = function (specifier, node, nodes) {
IgnoreFormatter.prototype.exportSpecifier = function () {
};