eslint-plugin-lit-a11y
Version:
linting plugin for lit-a11y
56 lines (39 loc) • 1.39 kB
Markdown
# click-events-have-key-events
Enforce `` is accompanied by at least one of ``, ``, or ``. Coding for the keyboard is important for users with physical disabilities who cannot use a mouse, AT compatibility, and screenreader users. This does not apply for interactive or hidden elements.
## Rule Details
Examples of **incorrect** code for this rule:
```js
html` <div ="${onClick}"></div> `;
```
Examples of **correct** code for this rule:
```js
html` <button ="${onClick}"></button> `;
```
```js
html` <div ="${onClick}" ="${onKeyup}"></div> `;
```
### Options
The `allowList` option lets you specify tag names to exclude from this rule. the `allowCustomElements` option (true by default) excludes all custom-elements from this rule.
```json
{
"rules": {
"lit-a11y/click-events-have-key-events": [
"error",
{
"allowList": ["foo-button"],
"allowCustomElements": false
}
]
}
}
```
Examples of **incorrect** code with `allowCustomElements: false`:
```js
html` <custom-element ="${onClick}"></custom-element> `;
```
Examples of **correct** code with `allowCustomElements: false, allowList: ['custom-element']`:
```js
html` <custom-element ="${onClick}"></custom-element> `;
```
## Further Reading
- [WCAG 2.1.1](https://www.w3.org/WAI/WCAG21/Understanding/keyboard)