-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathno-extend.js
60 lines (56 loc) · 1.5 KB
/
no-extend.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
'use strict';
const utils = require( '../utils.js' );
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'Disallows the ' + utils.jQueryGlobalLink( 'extend' ) + ' utility. Prefer `Object.assign` or the spread operator.'
},
fixable: 'code',
schema: [
{
type: 'object',
properties: {
allowDeep: {
type: 'boolean'
}
},
additionalProperties: false
}
]
},
create: ( context ) => ( {
'CallExpression:exit': ( node ) => {
if ( node.callee.type !== 'MemberExpression' ) {
return;
}
const name = node.callee.property.name;
if (
name !== 'extend' ||
!utils.isjQueryConstructor( context, node.callee.object.name )
) {
return;
}
if ( node.arguments.length === 1 ) {
// $.extend with one argument merges the object onto the jQuery namespace
return;
}
const allowDeep = context.options[ 0 ] && context.options[ 0 ].allowDeep;
const isDeep = node.arguments[ 0 ] && node.arguments[ 0 ].value === true;
if ( allowDeep && isDeep ) {
return;
}
context.report( {
node,
message: 'Prefer Object.assign or the spread operator to $.extend',
fix: function ( fixer ) {
// Only auto-fix if we are sure the first argument is an object.
// If it is undefined or null variable, then Object.assign will throw.
if ( !isDeep && node.arguments[ 0 ] && node.arguments[ 0 ].type === 'ObjectExpression' ) {
return fixer.replaceText( node.callee, 'Object.assign' );
}
}
} );
}
} )
};