Skip to content
Merged

2.2.1 #464

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-angular",
"version": "2.2.0",
"version": "2.2.1",
"description": "ESLint rules for AngularJS projects",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 0 additions & 3 deletions rules/service-name.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ module.exports = {

if (config.oldBehavior) {
isService = utils.isAngularServiceDeclarationDeprecated(node);
// Warning that the API is deprecated
// eslint-disable-next-line
console.warn('The rule `angular/service-name` will be split up to different rules in the next version. Please read the docs for more information');
} else {
isService = utils.isAngularServiceDeclaration(node);
}
Expand Down