Skip to content

placeholder-label-option

Detect missing placeholder option in required select.

Severity

warning

❌ Incorrect

html
<select required>
  <option value="a">A</option>
</select>

✅ Correct

html
<select required>
  <option value="">Choose...</option>
  <option value="a">A</option>
</select>

Reference

Configuration

json
{
  "rules": {
    "placeholder-label-option": "error"
  }
}

Released under the MIT License.