Skip to content

Commit 57dfee5

Browse files
committed
regenerate doc
1 parent 4823346 commit 57dfee5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ This config will be interpreted in the following way:
8686
| :----------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------- | :- | :- | :- |
8787
| [a11y-aria-label-is-well-formatted](docs/rules/a11y-aria-label-is-well-formatted.md) | [aria-label] text should be formatted as you would visual text. | ⚛️ | | |
8888
| [a11y-no-generic-link-text](docs/rules/a11y-no-generic-link-text.md) | disallow generic link text | | ||
89-
| [a11y-role-supports-aria-props](docs/rules/a11y-role-supports-aria-props.md) | Enforce that elements with explicit or implicit roles defined contain only `aria-*` properties supported by that `role`. | ⚛️ | | |
89+
| [a11y-role-supports-aria-props](docs/rules/a11y-role-supports-aria-props.md) | Enforce that elements with explicit or implicit roles defined contain only `aria-*` properties supported by that `role`. | ⚛️ | | |
9090
| [array-foreach](docs/rules/array-foreach.md) | enforce `for..of` loops over `Array.forEach` || | |
9191
| [async-currenttarget](docs/rules/async-currenttarget.md) | disallow `event.currentTarget` calls inside of async functions | 🔍 | | |
9292
| [async-preventdefault](docs/rules/async-preventdefault.md) | disallow `event.preventDefault` calls inside of async functions | 🔍 | | |

tests/a11y-role-supports-aria-props.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function getErrorMessage(attribute, role) {
2727
return `The attribute ${attribute} is not supported by the role ${role}.`
2828
}
2929

30-
ruleTester.run('role-supports-aria-props', rule, {
30+
ruleTester.run('a11y-role-supports-aria-props', rule, {
3131
valid: [
3232
{code: '<Foo bar />'},
3333
{code: '<div />'},

0 commit comments

Comments
 (0)