-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathcontroller-name.js
executable file
·30 lines (24 loc) · 1000 Bytes
/
controller-name.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// example - valid: true
angular.module('myModule').controller('MyController', function () {
// ...
});
// example - valid: false, errorMessage: "The MyCtrl controller should follow this pattern\: /^[A-Z][a-zA-Z0-9]*Controller$/"
angular.module('myModule').controller('MyCtrl', function () {
// ...
});
// example - valid: true, options: ["ui"]
angular.module('myModule').controller('uiTabsController', function () {
// ...
});
// example - valid: false, options: ["ui"], errorMessage: "The TabsController controller should be prefixed by ui"
angular.module('myModule').controller('TabsController', function () {
// ...
});
// example - valid: true, options: ["/[A-Z].*Ctrl/"]
angular.module('myModule').controller('MyCtrl', function () {
// ...
});
// example - valid: false, options: ["/[A-Z].*Ctrl/"], errorMessage: "The MyController controller should follow this pattern\: /[A-Z].*Ctrl/"
angular.module('myModule').controller('MyController', function () {
// ...
});