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 1e4a16e commit a823299Copy full SHA for a823299
CHANGELOG.md
@@ -1,5 +1,22 @@
1
# Changelog
2
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
20
## 1.0.11
21
Added [htmlacademy/space-between-comments](rules/space-between-comments/README.md)
22
```js
0 commit comments