WIP - add extractor, generate snippet_data
This commit is contained in:
22
node_modules/eslint-plugin-jsx-a11y/docs/rules/scope.md
generated
vendored
Normal file
22
node_modules/eslint-plugin-jsx-a11y/docs/rules/scope.md
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
# scope
|
||||
|
||||
The `scope` scope should be used only on `<th>` elements.
|
||||
|
||||
#### References
|
||||
1. [axe-core, scope](https://dequeuniversity.com/rules/axe/1.1/scope)
|
||||
|
||||
## Rule details
|
||||
|
||||
This rule takes no arguments.
|
||||
|
||||
### Succeed
|
||||
```jsx
|
||||
<th scope="col" />
|
||||
<th scope={scope} />
|
||||
```
|
||||
|
||||
### Fail
|
||||
|
||||
```jsx
|
||||
<div scope />
|
||||
```
|
||||
Reference in New Issue
Block a user