-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathforbid-dom-props.js
75 lines (62 loc) · 1.68 KB
/
forbid-dom-props.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
/**
* @fileoverview Forbid certain props on DOM Nodes
* @author David Vázquez
*/
'use strict';
const docsUrl = require('../util/docsUrl');
// ------------------------------------------------------------------------------
// Constants
// ------------------------------------------------------------------------------
const DEFAULTS = [];
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'Forbid certain props on DOM Nodes',
category: 'Best Practices',
recommended: false,
url: docsUrl('forbid-dom-props')
},
schema: [{
type: 'object',
properties: {
forbid: {
type: 'array',
items: {
type: 'string',
minLength: 1
},
uniqueItems: true
}
},
additionalProperties: false
}]
},
create(context) {
function isForbidden(prop) {
const configuration = context.options[0] || {};
const forbid = configuration.forbid || DEFAULTS;
return forbid.indexOf(prop) >= 0;
}
return {
JSXAttribute(node) {
const tag = node.parent.name.name;
if (!(tag && tag[0] !== tag[0].toUpperCase())) {
// This is a Component, not a DOM node, so exit.
return;
}
const prop = node.name.name;
if (!isForbidden(prop)) {
return;
}
context.report({
node,
message: `Prop \`${prop}\` is forbidden on DOM Nodes`
});
}
};
}
};