forked from EmmanuelDemey/eslint-plugin-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
no-services.js
56 lines (44 loc) · 1.96 KB
/
no-services.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// example - valid: true
app.controller('MyController', function(myService) {
// ...
});
// example - valid: false, errorMessage: "REST API calls should be implemented in a specific service ($http in controller)"
app.controller('MyController', function($http) {
// ...
});
// example - valid: false, errorMessage: "REST API calls should be implemented in a specific service ($resource in directive)"
app.directive('helloWorld', function($resource) {
// ...
});
// example - valid: true, options: [["http","q"]]
app.directive('helloWorld', function($resource) {
// ...
});
// example - valid: false, options: [["http","q"]], errorMessage: "REST API calls should be implemented in a specific service ($q in directive)"
app.directive('helloWorld', function($q) {
// ...
});
// example - valid: true, options: [["http","q"],["directive"]]
app.controller('MyController', function($http) {
// ...
});
// example - valid: false, options: [["http","q"],["directive"]], errorMessage: "REST API calls should be implemented in a specific service ($http in directive)"
app.directive('MyController', function($http) {
// ...
});
// example - valid: true, options: [{"directive":["http","q"],"controller":["resource"]}]
app.controller('MyController', function($http, $q, $log) {
// ...
});
// example - valid: true, options: [{"directive":["http","q"],"controller":["resource"]}]
app.directive('helloWorld', function($resource, $log) {
// ...
});
// example - valid: false, options: [{"directive":["http","q"],"controller":["resource"]}], errorMessage: "REST API calls should be implemented in a specific service ($resource in controller)"
app.controller('MyController', function($resource, $log) {
// ...
});
// example - valid: false, options: [{"directive":["http","q"],"controller":["resource"]}], errorMessage: "REST API calls should be implemented in a specific service ($http in directive)"
app.directive('helloWorld', function($http, $log) {
// ...
});