v1.0.16
1.0.16
Fix htmlacademy/attr-req-value
rule
Exceptions
A single <option>
in <select>
may have an empty value for the value
attribute if it is selected by default.
The following pattern is not considered a problem:
<label for="fruits">Fruits</label>
<select id="fruits" name="fruits" required>
<option value="">Select...</option>
<option value="banana">Banana</option>
<option value="apple">Apple</option>
</select>