diff --git a/package.json b/package.json index 44cf8da8..6f582726 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/rules/service-name.js b/rules/service-name.js index 332907a5..cdaf859b 100644 --- a/rules/service-name.js +++ b/rules/service-name.js @@ -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); }