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 4420eb4 commit ae1f8e9Copy full SHA for ae1f8e9
rules/attr-req-value/README.md
@@ -27,13 +27,13 @@
27
```
28
29
### ignore
30
-Игнорирует перечисленный список атрибутов
+Игнорирует перечисленный список атрибутов. Принимает значения `string|regex`
31
32
```js
33
{
34
'htmlacademy/attr-req-value': [true,
35
36
- ignore: ['alt']
+ ignore: ['alt', '/^data-/']
37
}
38
]
39
@@ -49,4 +49,5 @@
49
50
```html
51
<img src="images/image.jpg" width="100" height="100" alt="">
52
+<section data-test></section>
53
0 commit comments