-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathno-data.js
69 lines (64 loc) · 1.41 KB
/
no-data.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
'use strict';
const rule = require( '../../src/rules/no-data' );
const RuleTester = require( '../../tools/rule-tester' );
const error = 'Prefer WeakMap to .data/$.data';
const removeError = 'Prefer WeakMap to .removeData/$.removeData';
const hasError = 'Prefer WeakMap to .hasData/$.hasData';
const ruleTester = new RuleTester();
ruleTester.run( 'no-data', rule, {
valid: [
'data()',
'[].data()',
'div.data()',
'div.data',
'removeData()',
'[].removeData()',
'div.removeData()',
'div.removeData',
'hasData()',
'[].hasData()',
'div.hasData()',
'div.hasData'
// TODO: Technically $div.hasData should be allowed as $.hasData
// only exists as a utility, but as we are using createCollectionOrUtilMethodRule
// the non-existant method is disallowed as well.
],
invalid: [
{
code: '$.data(elem, "foo")',
errors: [ error ]
},
{
code: '$("div").data("foo", "bar")',
errors: [ error ]
},
{
code: '$div.data("foo")',
errors: [ error ]
},
{
code: '$("div").first().data("foo", "bar")',
errors: [ error ]
},
{
code: '$("div").append($("input").data("foo"))',
errors: [ error ]
},
{
code: '$.removeData(elem, "foo")',
errors: [ removeError ]
},
{
code: '$("div").removeData("foo")',
errors: [ removeError ]
},
{
code: '$div.removeData("foo")',
errors: [ removeError ]
},
{
code: '$.hasData(elem)',
errors: [ hasError ]
}
]
} );