Skip to content

Commit 33c7c57

Browse files
Update CHANGELOG.md
1 parent f9e0643 commit 33c7c57

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
# Changelog
22

33
## 1.0.13
4-
Excludes the `<input type="submit">` check from the [input-req-label](rules/input-req-label/README.md) rule.
4+
- Excludes the `<input type="submit">` check from the [input-req-label](rules/input-req-label/README.md) rule.
5+
- Adds `ignore` option for [tag-req-attr](rules/tag-req-attr/README.md)
6+
```js
7+
'input': [
8+
{
9+
name: 'name',
10+
ignore: {
11+
'type': 'submit'
12+
}
13+
},
14+
],
15+
```
16+
17+
will not require a name attribute for `<input`> with `type="submit"`
18+
519

620
## 1.0.12
721
Fix `htmlacademy/attr-req-value` rule

0 commit comments

Comments
 (0)