# ember/template-no-invalid-aria-attributes
💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
Disallow invalid ARIA attributes. Only use valid ARIA attributes as defined in the ARIA specification.
## Rule Details
This rule validates that only standard ARIA attributes are used on elements.
## Examples
Examples of **incorrect** code for this rule:
```gjs
Content
Content
```
Examples of **correct** code for this rule:
```gjs
Content
Content
Content
```
## References
- [Using ARIA, Roles, States, and Properties](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques)