Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Update eslint-config-airbnb to version 4
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-c committed Jan 23, 2016
1 parent 1b38445 commit 3361c70
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .eslintrc
Expand Up @@ -7,6 +7,9 @@
"vars-on-top": 0,
"no-use-before-define": 0,
"space-before-function-paren": 0,
"max-len": [1, 80, 4, {"ignoreComments": true, "ignoreUrls": true}]
"max-len": [1, 80, 4, {"ignoreComments": true, "ignoreUrls": true}],
"no-param-reassign": 0,
"quote-props": 0,
"wrap-iife": [2, "inside"]
}
}
2 changes: 1 addition & 1 deletion dependency-injector/actual-dialogs.js
Expand Up @@ -14,4 +14,4 @@
return window.prompt(msg);
}
};
}(window));
})(window);
2 changes: 1 addition & 1 deletion dependency-injector/mock-dialogs.js
Expand Up @@ -16,4 +16,4 @@
return 'test';
}
};
}(window));
})(window);
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -28,7 +28,7 @@
"browser-sync": "^2.9.6",
"del": "^2.0.2",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"eslint-config-airbnb": "^4.0.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-css-base64": "^1.3.2",
Expand Down
2 changes: 1 addition & 1 deletion request-deferrer/service-worker.js
Expand Up @@ -11,7 +11,7 @@ var root = (function() {
var tokens = (self.location + '').split('/');
tokens[tokens.length - 1] = '';
return tokens.join('/');
}());
})();

// By using Mozilla's ServiceWorkerWare we can quickly setup some routes
// for a _virtual server_. **It is convenient you review the
Expand Down
2 changes: 1 addition & 1 deletion virtual-server/service-worker.js
Expand Up @@ -42,7 +42,7 @@ var root = (function() {
var tokens = (self.location + '').split('/');
tokens[tokens.length - 1] = '';
return tokens.join('/');
}());
})();


// By using Mozilla's ServiceWorkerWare we can quickly setup some routes
Expand Down

0 comments on commit 3361c70

Please sign in to comment.