eslint-plugin-angular
Version:
ESLint rules for AngularJS projects
35 lines (21 loc) • 1.14 kB
Markdown
<!-- WARNING: Generated documentation. Edit docs and examples in the rule and examples file ('rules/empty-controller.js', 'examples/empty-controller.js'). -->
# empty-controller - disallow empty controllers
If you have one empty controller, maybe you have linked it in your Router configuration or in one of your views.
You can remove this declaration because this controller is useless
## Examples
The following patterns are considered problems;
/*eslint angular/empty-controller: 2*/
// invalid
angular.module('myModule').controller('EmptyController', function () {
}); // error: The EmptyController controller is useless because empty. You can remove it from your Router configuration or in one of your view
The following patterns are **not** considered problems;
/*eslint angular/empty-controller: 2*/
// valid
angular.module('myModule').controller('MyController', function ($log) {
$log.log('Hello World!');
});
## Version
This rule was introduced in eslint-plugin-angular 0.1.0
## Links
* [Rule source](../rules/empty-controller.js)
* [Example source](../examples/empty-controller.js)