// example - valid: true
angular.module('myModule').controller('MyController', function () {
// ...
});
// example - valid: false, errorMessage: "Avoid using a variable and instead use chaining with the getter syntax."
app.controller('MyController', function () {
// ...
});