forked from EmmanuelDemey/eslint-plugin-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow-service.js
31 lines (29 loc) · 961 Bytes
/
window-service.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
/**
* use `$window` instead of `window`
*
* Instead of the default window object, you should prefer the AngularJS wrapper service $window.
*
* @styleguideReference {johnpapa} `y180` Angular $ Wrapper Services - $document and $window
* @version 0.1.0
* @category angularWrapper
* @sinceAngularVersion 1.x
*/
'use strict';
module.exports = {
meta: {
docs: {
url: 'https://github.com/Gillespie59/eslint-plugin-angular/blob/master/docs/rules/window-service.md'
},
schema: []
},
create: function(context) {
var restrict = ['document', 'setInterval', 'setTimeout'];
return {
MemberExpression: function(node) {
if (node.object.name === 'window' && restrict.indexOf(node.property.name) < 0) {
context.report(node, 'You should use the $window service instead of the default window object', {});
}
}
};
}
};