vue-a11y/eslint-plugin-vuejs-accessibility

label-has-for: nesting without `for`

vhoyer opened this issue · 4 comments

<label class="career-why__dropdown-label">
  <select
    v-model="selectedState"
    class="career-why__region-dropdown"
  >
    <option
      v-for="(acronym, state) in states"
      :key="acronym"
      :value="acronym"
    >
      {{ state }}
    </option>
  </select>
</label>

This fails lint, but it is a valid accessible label/select, or am I mistaken?

What's your configuration for the label-has-for rule? By default this rule requires both nesting and for, but you can optionally configure it to only require one.

Oh, I see, that's why the required is there, sorry for not reading the doc properly, I just extended the recommended 😅

thanks for using the plugin

thank you for maintaining this, for a moment there I thought I would need to revamp the https://github.com/maranran/eslint-plugin-vue-a11y myself 😅 thanks a lot.

Also, sorry for keep posting here, I know it's kinda of a useless notification there, but nonetheless I though it was important to say at least thanks 😄