-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathno-other-utils.js
More file actions
86 lines (81 loc) · 1.21 KB
/
no-other-utils.js
File metadata and controls
86 lines (81 loc) · 1.21 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
'use strict';
const utils = require( '../utils.js' );
const utilsWithRules = [
'ajax',
'attr',
'camelCase',
'clone',
'contains',
'css',
'data',
'Deferred',
'each',
'error',
'escapeSelector',
'extend',
'filter',
'find',
'get',
'getJSON',
'getScript',
'globalEval',
'grep',
'hasData',
'holdReady',
'inArray',
'isArray',
'isEmptyObject',
'isFunction',
'isNumeric',
'isPlainObject',
'isWindow',
'map',
'merge',
'nodeName',
'noop',
'now',
'param',
'parseHTML',
'parseJSON',
'parseXML',
'post',
'prop',
'proxy',
'removeAttr',
'removeData',
'sub',
'text',
'trim',
'type',
'unique',
'when'
];
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'Disallows all utilities not covered by more specific rules.'
},
schema: []
},
create: ( context ) => ( {
'CallExpression:exit': ( node ) => {
if ( node.callee.type !== 'MemberExpression' ) {
return;
}
const name = node.callee.property.name;
if (
!name ||
utilsWithRules.includes( name ) ||
!utils.isjQueryConstructor( context, node.callee.object.name )
) {
return;
}
context.report( {
node,
message: '$.{{name}} is not allowed',
data: { name }
} );
}
} )
};