-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathno-sizzle.js
85 lines (79 loc) · 2.03 KB
/
no-sizzle.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
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
'use strict';
const utils = require( '../utils.js' );
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'Disallows selector extensions provided by Sizzle. Use the `allowPositional` option to allow positional selectors. ' +
'Use the `allowOther` option to allow all other selectors. These options are used in the `deprecated-3.4` ruleset as only positional ' +
'selectors were deprecated in that version.'
},
schema: [
{
type: 'object',
properties: {
allowPositional: {
type: 'boolean'
},
allowOther: {
type: 'boolean'
}
},
additionalProperties: false
}
]
},
create: ( context ) => {
const forbiddenPositional = /:eq|:even|:first([^-]|$)|:gt|:last([^-]|$)|:lt|:nth([^-]|$)|:odd/;
const forbiddenOther = /:animated|:button|:checkbox|:file|:has|:header|:hidden|:image|:input|:parent|:password|:radio|:reset|:selected|:submit|:text|:visible/;
const traversals = [
'children',
'closest',
'filter',
'find',
'has',
'is',
'next',
'nextAll',
'nextUntil',
'not',
'parent',
'parents',
'parentsUntil',
'prev',
'prevAll',
'prevUntil',
'siblings'
];
return {
'CallExpression:exit': ( node ) => {
if (
!node.arguments[ 0 ] ||
!utils.isjQuery( context, node.callee ) ||
(
node.callee.type === 'MemberExpression' &&
!traversals.includes( node.callee.property.name )
)
) {
return;
}
const allowPositional = context.options[ 0 ] &&
context.options[ 0 ].allowPositional;
const allowOther = context.options[ 0 ] &&
context.options[ 0 ].allowOther;
const value = utils.joinLiterals( node.arguments[ 0 ] );
if ( !allowPositional && forbiddenPositional.test( value ) ) {
context.report( {
node,
message: 'Positional selector extensions are not allowed'
} );
} else if ( !allowOther && forbiddenOther.test( value ) ) {
context.report( {
node,
message: 'Selector extensions are not allowed'
} );
}
}
};
}
};