Skip to content

Commit a823299

Browse files
Update CHANGELOG.md
1 parent 1e4a16e commit a823299

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 1.0.12
4+
Fix `htmlacademy/attr-req-value` rule
5+
6+
### Exceptions
7+
A single `<option>` in `<select>` may have an empty value for the `value` attribute if it is selected by default.
8+
9+
The following pattern is **not** considered a problem:
10+
11+
```html
12+
<label for="fruits">Fruits</label>
13+
<select id="fruits" name="fruits" required>
14+
<option value="">Select...</option>
15+
<option value="banana">Banana</option>
16+
<option value="apple">Apple</option>
17+
</select>
18+
```
19+
320
## 1.0.11
421
Added [htmlacademy/space-between-comments](rules/space-between-comments/README.md)
522
```js

0 commit comments

Comments
 (0)