-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathjsx-props-no-spread-multi.js
54 lines (48 loc) · 1.49 KB
/
jsx-props-no-spread-multi.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
/**
* @fileoverview Prevent JSX prop spreading the same expression multiple times
* @author Simon Schick
*/
'use strict';
const docsUrl = require('../util/docsUrl');
const report = require('../util/report');
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
const messages = {
noMultiSpreading: 'Spreading the same expression multiple times is forbidden',
};
/** @type {import('eslint').Rule.RuleModule} */
module.exports = {
meta: {
docs: {
description: 'Disallow JSX prop spreading the same identifier multiple times',
category: 'Best Practices',
recommended: false,
url: docsUrl('jsx-props-no-spread-multi'),
},
messages,
},
create(context) {
return {
JSXOpeningElement(node) {
const spreads = node.attributes.filter(
(attr) => attr.type === 'JSXSpreadAttribute'
&& attr.argument.type === 'Identifier'
);
if (spreads.length < 2) {
return;
}
// We detect duplicate expressions by their identifier
const identifierNames = new Set();
spreads.forEach((spread) => {
if (identifierNames.has(spread.argument.name)) {
report(context, messages.noMultiSpreading, 'noMultiSpreading', {
node: spread,
});
}
identifierNames.add(spread.argument.name);
});
},
};
},
};