Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 442 Bytes

File metadata and controls

23 lines (16 loc) · 442 Bytes

aria-props

Elements cannot use an invalid ARIA attribute. This will fail if it finds an aria-* property that is not listed in WAI-ARIA States and Properties spec.

🔧 Options

This rule takes no arguments.

✔ Succeed

<template>
  <input aria-labelledby="address" />
</template>

❌ Fail

<template>
  <input aria-labeledby="address" />
</template>