-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathno-extend.js
42 lines (39 loc) · 889 Bytes
/
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
'use strict';
const rule = require( '../../src/rules/no-extend' );
const RuleTester = require( '../../tools/rule-tester' );
const error = 'Prefer Object.assign or the spread operator to $.extend';
const ruleTester = new RuleTester();
ruleTester.run( 'no-extend', rule, {
valid: [
'extend()',
'myMethod.extend()',
'myMethod.extend',
{
code: '$.extend(true, {}, foo)',
options: [ { allowDeep: true } ]
},
'$.extend({myUtil:fn})'
],
invalid: [
{
code: '$.extend({}, foo)',
errors: [ error ],
output: 'Object.assign({}, foo)'
},
{
code: '$.extend(true, {}, foo)',
errors: [ error ]
},
{
code: '$.extend({}, foo)',
options: [ { allowDeep: true } ],
errors: [ error ],
output: 'Object.assign({}, foo)'
},
{
code: '$.extend(fooCouldBeNull, doesNotAutofix)',
options: [ { allowDeep: true } ],
errors: [ error ]
}
]
} );