We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77ed4af commit d1835bcCopy full SHA for d1835bc
docs/rules/forbid-dom-props.md
@@ -44,12 +44,12 @@ Examples of **correct** code for this rule:
44
45
An array of strings, with the names of props that are forbidden. The default value of this option `[]`.
46
Each array element can either be a string with the property name or object specifying the property name, an optional
47
-custom message, and a DOM nodes blacklist(e.g. `<div />`):
+custom message, and a DOM nodes disallowed list (e.g. `<div />`):
48
49
```js
50
{
51
"propName": "someProp",
52
- "disallowedFor": [DOMNode, AnotherDOMNode],
+ "disallowedFor": ["DOMNode", "AnotherDOMNode"],
53
"message": "Avoid using someProp"
54
}
55
```
0 commit comments